我想用逗号分隔迭代结果,但它不是数组。我想在视图中执行它,因此代码不应该很长。
<?php foreach ($roles as $role): ?>
<?php echo $role->title; ?>
<?php endforeach; ?>
Result对象实现Countable,Iterator,SeekableIterator,ArrayAccess。
答案 0 :(得分:1)
我不明白我的理解是什么(你的代码基本上看起来像你说的那样?)我唯一看到缺失的是用逗号分隔。
<?php
$first=true;
foreach ($roles as $role) {
if (!$first) echo ",";
$first=false;
echo $role->title;
}
?>
或者,如果缓存正常(字符串长度不是太长):
<?php
$output="";
foreach ($roles as $role) {
$output.=$role->title.",";
}
echo substr($output,0,-1);//Trim last comma
?>
答案 1 :(得分:1)
如果您的$roles
变量是一个对象,请编写一个返回属性值数组的方法。类似的东西:
class Roles implements Countable, Iterator, SeekableIterator, ArrayAccess {
//main body of the class here
public function prop_as_array($prop){
if(!property_exists('Role', $prop)) throw new Exception("Invalid property");
$arr=array();
if(count($this)==0) return $arr
foreach($this as $role){
$arr[]=$role->$prop;
}
return $arr;
}
}
//on output page
$roles=new Roles;
echo implode(',', $roles->prop_as_array('title'));