一个简单的MySQL表即centers
,其中Center
为模型,code
为其中一列。
$center_found=Center::find(6);
echo " code from method 1 = ".$center_found->code;
echo " code from method 1 = ".$center_found['code'];
echo " type = ".gettype($center_found);
我很奇怪两种方法都可以找到code
,类型显示为object
。
所以
1)find
的返回类型是什么?
2)除非没有匹配结果,否则返回类型是否会发生变化?
答案 0 :(得分:1)