|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-04-17 00:26 UTC] andrei
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 20 12:00:02 2025 UTC |
function_exists() only returns true if passed the name of a function in all lower case. so: function Test() { print "Hello, world\n"; } Test(); /* calls function */ function_exists("Test"); /* returns false */ function_exists("test"); /* returns true */