我有一个这样的数组,我从解析 html 源代码中得到:
Array
(
[0] => 12345
[1] => 54321
[2] => 32546
[3] => 98754
[4] => 15867
[5] => 75612
)
如果我将它放在一个变量中并运行一个 foreach 循环,并以这样的 url 为前缀:
$x = Array;
foreach ($x as $y){
$r = 'http://example.com/' . $y;
echo $r . '<br>';
}
它将像这样输出:
http://example.com/12345
http://example.com/54321
http://example.com/32546
http://example.com/98754
http://example.com/15867
http://example.com/75612
如果在浏览器中运行,每个输出 url 都会像这样输出一个对象:
{
"key1": "value1",
"key2": "value2",
"key3": "value3"
}
或者像这样:
{
"error": {
"errorMessage": "errorMessageValue",
"errorType": "errorTypeValue"
}
}
所以我的问题是......我如何过滤 php 中的数组,以便它只会给我一个具有有效键/值对而不是错误对象的数组。
按照建议,我尝试了以下方法:
$x = Array;
foreach ($x as $y){
$link = 'http://example.com' . $y;
$json = file_get_contents($link);
$array = array_filter((array)json_decode($json), "is_scalar");
echo '<pre>';
echo json_encode($array) . '<br>';
echo '</pre>';
}
但它仍然输出相同的数组并且不排除错误对象。