$数组
Array ( [0] => one [1] => two [2] => three )
$array2
Array ( [0] => three )
数组差异($array,$array2)
stdClass Object ( [0] => one [1] => two )
我需要最终结果是数组而不是stdClass对象
Array ( [0] => one [1] => two )
mwngjboj1#
请参阅doc,它已经传回数组。将数组与一个或多个其他数组进行比较,并返回数组中不存在于其他任何数组中的值。要将stdClass强制转换为数组,可以执行
stdClass
$casted_result = (array) $result;
1条答案
按热度按时间mwngjboj1#
请参阅doc,它已经传回数组。
将数组与一个或多个其他数组进行比较,并返回数组中不存在于其他任何数组中的值。
要将
stdClass
强制转换为数组,可以执行