下标可以访问字符串中的元素:
PHP">$str = "hello world";
$ch = $str[0]; // $ch 的值是 h
可以使用变量代替类名或函数名:
function curiosity()
{
// 这儿很变态
$class = "Animal";
$anm = new $class;
$anm->sayit();
}
原文链接:https://www.f2er.com/note/421470.html下标可以访问字符串中的元素:
PHP">$str = "hello world";
$ch = $str[0]; // $ch 的值是 h
可以使用变量代替类名或函数名:
function curiosity()
{
// 这儿很变态
$class = "Animal";
$anm = new $class;
$anm->sayit();
}
原文链接:https://www.f2er.com/note/421470.html