You can do this in Python, but is it possible in PHP?
>>> def a(): print 1
...
>>> def a(): print 2
...
>>> a()
2
e.g.:
<? function var_dump() {} ?>
Fatal error: Cannot redeclare var_dump() in /tmp/- on line 1
|
You can do this in Python, but is it possible in PHP?
e.g.:
| |||
|
feedback
|
|
| |||
|
feedback
|
|
No, it is not possible to do this as you might expect. From the
HOWEVER, You can use You can also use
As with runkit, it is not very elegant, but it gives the behavior you are looking for. | ||||
|
feedback
|
|
I realize this question is a bit old, but Patchwork is a recently-released PHP 5.3 project that supports redefinition of user-defined functions. Though, as the author mentions, you will need to resort to runkit or php-test-helpers to monkey-patch core/library functions. | |||
|
feedback
|