public:权限是最大的,可以内部调用,实例调用等。
protected: 受保护类型,用于本类和继承类调用。
private: 私有类型,只有在本类中使用。
const :一旦赋值不能被改变
static:
protected $cache = 300; // 缓存时间const da = ‘1‘;static $dg = ‘2‘;private $dd = ‘3‘;public $df = ‘4‘;
public function info(){ echo $this->cache; echo self::da; echo self::$dg; echo $this->dd; echo $this->df; }
时间: 2024-10-17 02:26:16