首页 > 代码库 > 静态变量
静态变量
例子
<?php
class test
{
const constvar=‘hello world‘;
static $staticvar=‘hello world‘;
function getStaticvar(){
return self::$staticvar;
}
}
$obj=new test();
echo test::constvar //输出‘hello world‘
echo test::staticvar //出错,staticvar 前必须加$才能访问,这是容易和类常量(per-class常量)容易混淆的地方之一
echo test::$staticvar //输出‘hello world‘
$str=‘test‘;
echo $str::$staticvar //出错,类名在这不能用变量动态化
echo $str::constvar //出错原因同上
//在类名称存在一个变量中处于不确定(动态)状态时,只能以以下方式访问类变量
$obj2=new $str();
echo $obj2->getStaticvar();
?>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。