php中self关键字的功能是什么


what is the function of self keyword in php

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
PHP: self vs. $this

这是从PHP手册,请让我知道在哪里和为什么我使用自己的关键字

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
class Foo
{
    public static $my_static = 'foo';

    public function staticValue() {
        return self::$my_static;
    }
}

class Bar extends Foo
{
    public function fooStatic() {
        return parent::$my_static;
    }
}


print Foo::$my_static ."
"
;

$foo = new Foo();
print $foo->staticValue() ."
"
;
print $foo->my_static ."
"
;      // Undefined"Property" my_static

print $foo::$my_static ."
"
;
$classname = 'Foo';
print $classname::$my_static ."
"
; // As of PHP 5.3.0

print Bar::$my_static ."
"
;
$bar = new Bar();
print $bar->fooStatic() ."
"
;
?>


self允许您引用当前所在的类;它类似于$this,但与instance无关,但允许您调用静态方法而不命名类(我认为父类的工作方式类似,但指向父类,而不是自类自解释)。


self用于访问类方法和变量(静态的),而$this用于访问对象实例变量和方法。