如何通过PHP中的不同类方法访问变量?

时间:2010-12-15 13:29:30

标签: php

如何在PHP中的类中使用可通过同一类的不同方法访问的变量? 声明,初始化和访问的位置和语法是什么?

4 个答案:

答案 0 :(得分:2)

请阅读PHP手册中的“类和对象:基础知识”:

http://php.net/manual/en/language.oop5.php

答案 1 :(得分:2)

您可以使用以下方法在所有方法中访问类中的每个变量:

$this->myVar;

答案 2 :(得分:2)

这是一个简单的例子。

<?php
class HelloWorld {
 var $message = '';

 function __construct() {
   $this->message = 'Hello World';
 }

 function say_hi() {
   echo $this->message;
 }
}
?>

答案 3 :(得分:0)

可以在类中声明变量。

<?php
class ExampleClass {
public $pub; // accessable anywhere
protected $pro; // can only be called by this class and classes that extend this class (inherit)
private $pri; // only accessed by this class

}?>

解释变量范围here