以下代码返回一个关联数组,如下所示
Array ( [1] => Array (
[url] => example.com
[title] => Title.example
[snippet] => snippet.example
) )
$blekkoArray = array();
foreach ($js->RESULT as $item)
{
$blekkoArray[$i]['url'] = str_replace ($find, '', ($item->{'Url'}) );
$blekkoArray[$i]['title'] = ($item->{'url_title'});
$blekkoArray[$i]['snippet'] = ($item->{'snippet'});
$i++;
}
print_r ($blekkoArray);
如何修改数组,以便1,2,3
由 url 标识而不是由 etc 标识的数组元素,例如。
Array ( [example.com] => Array (
[title] => Title.example
[snippet] => snippet.example
) )