note 102723 deleted from language.operators.type by danbrown
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: Tumba College of Tech Rwanda ~ PHP Group
----
<?php
class ABC
{
}
$obj = new ABC();
var_dump($obj instanceof ABC);
var_dump($obj instanceof $obj);
?>
<?php
/*
output
bool(true)
bool(true)
*/
?>