我有一个看起来像这样的数组:
array
0 =>
array
'title' => string 'Ireland - Wikipedia, the free encyclopedia'
'url' => string 'http://en.wikipedia.org/wiki/Ireland'
1 =>
array
'title' => string 'Ireland's home for accommodation, activities.'
'url' => string 'http://www.ireland.com/'
我想为每个元素添加 0 分。我认为这个简单的 foreach 循环可以解决问题,但是......好吧......它没有:/
public function setScore($result)
{
foreach($result as $key)
{
$key = array('title', 'url', 'score' => 0);
}
return $result;
}
有人可以帮我吗?
谢谢