|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1999-11-18 04:14 UTC] evan at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Mon Jun 15 04:00:01 2026 UTC |
Hiya 1. Is it possible for you guys to make a function is_function to test if a function exsists (including in objects) what i want to do: $db = NEW Database(); .... if (is_function($db->info)) { $db->info(); } 2. and a way to redeclare a function.. : function test () { echo "plop"; } ... function test ($a) { echo $a; } whithout giveing error's... and maybe also usefull for replacing buildin functions Tnx in advance Wico