码迷,mamicode.com
首页 > Web开发 > 详细

php

时间:2016-08-01 17:49:05      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:

<?php
class A
{
    function foo()
    {
        if (isset($this)) {
            echo ‘$this is defined (‘;
            echo get_class($this);
            echo ") ";
        } else {
            echo "$this is not defined. ";
        }
    }
}

class B
{
    function bar()
    {
        A::foo();
    }
}

$a = new A();
$a->foo();
A::foo();
$b = new B();
$b->bar();
B::bar();
?>

以上例程会输出:

$this is defined (a)
$this is not defined.
$this is defined (b)
$this is not defined.

php

标签:

原文地址:http://www.cnblogs.com/wxdzbc/p/5726446.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!