Mega Code Archive

 
Categories / Php / Reflection
 

Determining Whether An Object Is An Instance Of A Particular Class

<? class Shape {      function __construct()      {      }  }  $polly = new Shape('Polynesia');  print is_a($polly, 'Shape') ? '' : 'not ';  ?>