Home >Backend Development >PHP Tutorial >Use of PHP instanceof

Use of PHP instanceof

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-29 09:02:18809browse
<?php
class Math{
    static function squared($input){
        echo $input*$input;
    }
}

$math = new Math();
if($math instanceof Math){
    echo 'yes';
}
instanceof checks whether an instance is derived from this class.

The above introduces the use of PHP instanceof, including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP simple thief programNext article:PHP simple thief program