Home  >  Article  >  Backend Development  >  可变函数 可变类名 都可以

可变函数 可变类名 都可以

WBOY
WBOYOriginal
2016-06-23 13:31:13920browse

可变函数 可变类名 都可以 

class my{public static function say(){echo 'hello';}$o='my';$o::say();//这样可以调用 就是可变类名吧?‘my’::say();//这样为什么就报错了呢? 上面变量里面也不是保存‘my’这个字符串吗? 为什么上面的行下面的不行了呢? 同样的值哦}


回复讨论(解决方案)

首先  你的单引号不对吧 ‘my’ 和'my'

单引号我改回来了!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:PHP中的Traits详解Next article:SQL IN 问题