test:
class Demo
{
public function hello()
{
return __METHOD__;
}
}
$obj = new Demo;
echo $obj->hello(); Demo::hello
file_get_contents()函数把整个文件读入到一个字符串中
class Demo
{
public function hello()
{
return __METHOD__;
}
}
$obj = new Demo;
echo $obj->hello(); Demo::hello
file_get_contents()函数把整个文件读入到一个字符串中