如果一个或多个数组为空,merge_array返回 null?
2022-08-30 13:06:20
我会给你快速了解我正在做的事情。
我正在使用wordpress和高级自定义字段插件。这是一个基于php的问题,因为这些字段包含对象数组。get_field()
$gallery_location = get_field('gallery_location');
$gallery_studio = get_field('gallery_studio');
例如,当转储将返回此...$gallery_location
array(18) {
[0]=>
array(10) {
["id"]=>
int(126)
["alt"]=>
string(0) ""
["title"]=>
string(33) "CBR1000RR STD Supersport 2014 001"
["caption"]=>
string(0) ""
["description"]=>
string(0) ""
["mime_type"]=>
string(10) "image/jpeg"
["url"]=>
string(94) "http://www.example.com/wp/wp-content/uploads/2013/10/CBR1000RR-STD-Supersport-2014-001.jpg"
["width"]=>
int(7360)
["height"]=>
int(4912)
}
... on so fourth
}
然后,我使用merge_array来合并两个对象...
$gallery_location = get_field('gallery_location');
$gallery_studio = get_field('gallery_studio');
$downloads = array_merge( $gallery_location, $gallery_studio );
我正在合并多个数组,但如果其中一个数组为空,则会导致合并数组完全返回null!
我的问题是,merge_array返回null是一些数组是空的,我怎么能停止?
提前感谢您的任何想法。
@zessx
这就是我要回来的...
$gallery_location = get_field( 'gallery_location' );
$gallery_studio = get_field( 'gallery_studio' );
$downloads = array_merge( $gallery_location, $gallery_studio );
var_dump($gallery_location);
var_dump($gallery_studio);
var_dump($downloads);
这些是上面以相同顺序转储的结果...
string(0) ""
array(18) {
[0]=>
array(10) {
["id"]=>
int(126)
["alt"]=>
string(0) ""
["title"]=>
string(33) "CBR1000RR STD Supersport 2014 001"
["caption"]=>
string(0) ""
["description"]=>
string(0) ""
["mime_type"]=>
string(10) "image/jpeg"
["url"]=>
string(94) "http://www.example.com/wp/wp-content/uploads/2013/10/CBR1000RR-STD-Supersport-2014-001.jpg"
["width"]=>
int(7360)
["height"]=>
int(4912)
}
... on so fourth
}
NULL
如您所见,仍然返回null,如果我尝试在下面使用您的两种解决方案,它不起作用?$downloads