uopz_extend
(PECL uopz 1, PECL uopz 2, PECL uopz 5, PECL uopz 6, PECL uopz 7 < 7.1.0)
uopz_extend — 実行時にクラスを継承させる
パラメータ
class
-
拡張するクラスの名前
parent
-
継承するクラスの名前
エラー / 例外
PHP 7.4.0 以降では、
OPcache が有効になっており、
かつ class
または parent
が変更不能な場合(トレイトの場合も)、
uopz_extends() 関数は
RuntimeException をスローするようになりました。
例
例1 uopz_extend() の例
<?php
class A {}
class B {}
uopz_extend(A::class, B::class);
var_dump(class_parents(A::class));
?>
上の例の出力は以下となります。
array(1) { ["B"]=> string(1) "B" }
+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