uopz_delete
(PECL uopz 1, PECL uopz 2)
uopz_delete — Delete a function
警告
この関数は、PECL uopz 5.0.0 で 削除 されました。
説明
Deletes a function or method
パラメータ
class
-
function
-
戻り値
例
例1 uopz_delete() example
<?php
uopz_delete("strlen");
echo strlen("Hello World");
?>
上の例の出力は、 たとえば以下のようになります。
PHP Fatal error: Call to undefined function strlen() in /path/to/script.php on line 4
例2 uopz_delete() class example
<?php
class My {
public static function strlen($arg) {
return strlen($arg);
}
}
uopz_delete(My::class, "strlen");
echo My::strlen("Hello World");
?>
上の例の出力は、 たとえば以下のようになります。
PHP Fatal error: Call to undefined method My::strlen() in /path/to/script.php on line 10
+add a note
User Contributed Notes
There are no user contributed notes for this page.
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google