|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-07-22 20:38 UTC] rasmus@php.net
[2009-07-22 20:39 UTC] a dot dotreppe at aspyct dot org
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Dec 08 16:00:01 2025 UTC |
Description: ------------ There is a consistency problem between the names we can give to a function, and the names we can actually use. For instance, I can create a function named _, but not use it. Reproduce code: --------------- // This will parse without error function _($txt) { // Do some stuff } // This will cause a parse error _('yes');