#この記事の動作環境: Windows10 システム、php 7、thinkpad t480 コンピューター。 php は、クラス内のメソッドが存在するかどうかを判断します: bool method_exists (mixed $object, string $method_name) クラスのメソッドが存在するかどうかを確認します。例:メソッドと属性が存在するかどうかを判断する php メソッド: [method_exists(mixed $object,string $method_name);property_exists(mixed $class,string $property);]。
$directory=new Directory; if(!method_exists($directory,'read')){ echo '未定义read方法!'; }PHP は、クラス内のプロパティが定義されているかどうかを判断します: bool property_exists(mixed $class, string $property) クラスのプロパティが存在するかどうかを確認します。例:
$directory=new Directory; if(!property_exists($directory,'li')){ echo '未定义li属性!'; }推奨される学習:
以上がPHPにメソッドと属性が存在するかどうかを確認する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。