0

我有一个这样的数组,我从解析 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>';
}

但它仍然输出相同的数组并且不排除错误对象。

4

2 回答 2

4
$array = array_filter((array)json_decode($json), "is_scalar");

这将从数组中排除所有对象,并且您只有 key => value 对,其中 value 既不是对象也不是数组。

于 2013-07-27T00:36:25.573 回答
0

也许我遗漏了一些东西,但你不能检查返回的对象是否包含“错误”条目,如果有,跳过它?

$x = Array;
foreach ($x as $y){
  $link = 'http://example.com' . $y;
  $json = file_get_contents($link);
  $returned_data = json_decode($json, true);

  // If returned data contains an "error" entry, just move to next one
  if(isset($returned_data['error'])) {
    continue;
  }
  echo '<pre>';
  echo json_encode($returned_data) . '<br>';
  echo '</pre>';
}
于 2013-07-27T01:21:15.487 回答