Answers for "instance of php"

PHP
1

php instanceof

<?php
class MyClass {}
class AnotherClass extends MyClass{}
$obj = new AnotherClass();

if($obj instanceof AnotherClass) {
  echo "The object is AnotherClass";
}
// The object is also an instance of the class it is derived from
if($obj instanceof MyClass) {
  echo "The object is MyClass<br>";
}
?>
Posted by: Guest on March-20-2021
0

php instanceof

$myObject instanceof MyClass

//usualy in if()
if($myObject instanceof MyClass)
{
  //Do it
}
Posted by: Guest on October-08-2021

Browse Popular Code Answers by Language