当前位置:
代码迷
>>
PHP
>> 将一个类赋值的有关问题
详细解决方案
将一个类赋值的有关问题
热度:
76
发布时间:
2016-04-28 21:35:54.0
将一个类赋值的问题
定义了一个类
class myclass
{
function test()
echo "good";
}
$test1="myclass";
$test2=new myclass();
都是把类赋值给变量,那这两种赋值方法有什么差别?
------解决方案--------------------
你分別輸出那兩個變量就知道啦
查看全文
相关解决方案