php类型运算符

<?php
    /* 类型运算符 */
    class Cat {
    }
 
    class Dog {
    }
 
    $animal = new Cat;
    var_dump($animal instanceof Cat);       // boolean true
    var_dump($animal instanceof Dog);       // boolean false
?>

  

posted on 2013-04-02 08:52  刘宝成  阅读(101)  评论(0编辑  收藏  举报

导航