uopz_deleteDelete a function Description
void uopz_delete
( string
$class
, string $function
)
void uopz_delete
( string
$function
)Deletes a function or method Parameters
Return Values
ExamplesExample #1 uopz_delete example
<?php The above example will output something similar to: PHP Fatal error: Call to undefined function strlen() in /path/to/script.php on line 4 Example #2 uopz_delete class example
<?php The above example will output something similar to: PHP Fatal error: Call to undefined method My::strlen() in /path/to/script.php on line 10 |