我有一个对象数组,$tab
它们是表的“行”(即您可以通过 " 访问每一列$tab[$i]->columnname
。
我有另一个对象数组,$tab_json
它是 AJAX 调用的返回,它也包含表的“行”(即您可以通过“访问每一列” $tab_json[$i]->columnname
。
两个数组都包含完全相同的列,但我只想“猜测”其中的$tab
哪些不存在于$tab_json
.
当然,我知道array-intersect和array-diff函数,但它们在对象比较上似乎效果不佳。除非我错了?
这是我想要工作的示例,但有一个 PHP 例外:
tab_json = PHP Catchable fatal error: Object of class stdClass could not be converted to string in sample.php on line 112
只需复制粘贴并将其运行到文件中 ( php -f filename.php
)。知道我该怎么做吗?
<?php
$tab = array(
(object)array(
'id' => 1,
'titre' => "Anchois",
'attributs' => array()
),
(object)array(
'id' => 4,
'titre' => "Jambon",
'attributs' => array()
),
(object)array(
'id' => 12,
'titre' => "La Cabro d'or",
'attributs' => array(
(object)array("id" => 1),
(object)array("id" => 8)
)
)
);
$tab_json = array (
(object)array(
'id' => 1,
'titre' => 'Anchois',
'attributs' =>
array (
),
),
(object)array(
'id' => 4,
'titre' => 'Jambon',
'attributs' =>
array (
),
),
(object)array(
'id' => 12,
'titre' => 'La Cabro d\'or',
'attributs' =>
array (
),
),
(object)array(
'id' => 25,
'titre' => 'Vin rouge ou rosé',
'attributs' =>
array (
),
),
(object)array(
'id' => 22,
'titre' => 'Crème oignons lardons',
'attributs' =>
array (
(object)array(
'id' => 1,
),
(object)array(
'id' => 2,
),
),
)
);
echo "tab = "; var_export($tab); echo "\n";
echo "tab_json = "; var_export($tab_json); echo "\n";
echo "tab_json = "; var_export(array_diff($tab_json,$tab)); echo "\n";
?>