- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
函数应该返回数组
public static function categories() {
// return array of categories
$categories = Category::select('category')->get();
return get_object_vars($categories);
}
categories()
我收到
array(0) { }
+----+----------------------+
| id | category |
+----+----------------------+
| 1 | Appliances |
| 2 | Auto Parts |
| 3 | Boats & Watercraft's |
| 4 | Campers |
+----+----------------------+
$categories
我有一个更长的版本
object(Illuminate\Database\Eloquent\Collection)#272 (1) { ["items":protected]=> array(20) { [0]=> object(Category)#289 (20) { ["table":protected]=> string(10) "categories" ["connection":protected]=> NULL ["primaryKey":protected]=> string(2) "id" ["perPage":protected]=> int(15) ["incrementing"]=> bool(true) ["timestamps"]=> bool(true) ["attributes":protected]=> array(1) { ["category"]=> string(10) "Appliances" } ["original":protected]=> array(1) { ["category"]=> string(10) "Appliances" } ["relations":protected]=> array(0) { } ["hidden":protected]=> array(0) { } ["visible":protected]=> array(0) { } ["appends":protected]=> array(0) { } ["fillable":protected]=> array(0) { } ["guarded":protected]=> array(1) { [0]=> string(1) "*" } ["dates":protected]=> array(0) { } ["touches":protected]=> array(0) { } ["observables":protected]=> array(0) { } ["with":protected]=> array(0) { } ["morphClass":protected]=> NULL ["exists"]=> bool(true) } [1]=> object(Category)#288 (20) { ["table":protected]=> string(10) "categories" ["connection":protected]=> NULL ["primaryKey":protected]=> string(2) "id" ["perPage":protected]=> int(15) ["incrementing"]=> bool(true) ["timestamps"]=> bool(true) ["attributes":protected]=> array(1) { ["category"]=> string(10) "Auto Parts" } ["original":protected]=> array(1) { ["category"]=> string(10) "Auto Parts" } ["relations":protected]=> array(0) { } ["hidden":protected]=> array(0) { } ["visible":protected]=> array(0) { } ["appends":protected]=> array(0) { } ["fillable":protected]=> array(0) { } ["guarded":protected]=> array(1) { [0]=> string(1) "*" } ["dates":protected]=> array(0) { } ["touches":protected]=> array(0) { } ["observables":protected]=> array(0) { } ["with":protected]=> array(0) { } ["morphClass":protected]=> NULL ["exists"]=> bool(true) } [2]=> object(Category)#271 (20) { ["table":protected]=>
最佳答案
get_object_vars
无法正常工作,因为它只能找到实际(和可访问)的属性。一个 Collection
(这是 $categories
是什么)没有可以读取的属性。您可能想做的是 lists()
$categories = Category::lists('category');
return $categories;
关于PHP get_object_vars 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28098072/
这是我的用户类: load($id); } /** * @TODO PhpDoc */ public static function factory($id
函数应该返回数组 public static function categories() { // return array of categories $categories = C
get_object_vars($obj) 和 (array) $obj 有区别吗? 两者似乎都返回对象的公共(public)属性。 哪个更好? 最佳答案 这并不完全正确。 get_object_va
关于PHP,有什么区别: get_class_vars() get_object_vars() 最佳答案 get_class_vars() 获取 class_nameget_object_vars()
这一行: var_dump($data['department']); 返回这个: object(Penny\HomeBundle\Entity\Department)[1420] protect
我有一些相互扩展的类,每次都添加更多属性。 现在我需要获取一个类的所有属性的列表,但是按照它们被声明的顺序,首先是父类的属性。 例如: class foo { public $a = 1;
功能实现有时会因版本而异,但这并不奇怪,但不是这样......看: $array = ["abc","def"]; $object = new stdclass(); foreach($array a
我已经使用 get_object_vars 一段时间了。它总是只返回一个对象的公共(public)属性,但突然间它也返回 protected 变量?!?怎么可能?它以前从未这样做过 代码 print_
在这个例子中,我假设从 data 调用的函数 getVars 将能够返回 B 的私有(private)变量名称,因为 $this 是 B 的实例。 取而代之的是,$this->getVars() 返回
在这个例子中,我假设从 data 调用的函数 getVars 将能够返回 B 的私有(private)变量名称,因为 $this 是 B 的实例。 取而代之的是,$this->getVars() 返回
我得到了这个结果array(1) { ["meta_value"]=> string(1) "5"} 在选择语句请求之后 $mp = $wpdb->get_row( $wpdb->prepare( "
我需要获取对象的公共(public)属性;有这样做的首选方法吗?由于反射 API 的开销,我对使用 ReflectionObject#getProperties() 持谨慎态度,但是在将对象转换为数组
我是一名优秀的程序员,十分优秀!