gpt4 book ai didi

PHP - 如何在 while 循环中将数组合并为一个数组?

转载 作者:行者123 更新时间:2023-12-02 04:31:13 25 4
gpt4 key购买 nike

我有这段代码,它在 while 循环中为我提供了 post_permalink

<?php 
$value[] = array();
while ($the_query->have_posts()) : $the_query->the_post()
$value[] =array(
'post_permalink' => get_permalink()
);

endwhile; ?>

现在的问题是我得到的链接

    Array ( [0] => Array ( [post_permalink] => link ) 
[1] => Array ( [post_permalink] => link )
[2] => Array ( [post_permalink] => link )
[3] => Array ( [post_permalink] => link ) )

我想要的方式:

        Array ( [post_permalink] => link  
[post_permalink] => link
[post_permalink] => link
[post_permalink] => link )

即:一个数组中的所有链接而不是四个子数组。请帮忙!

最佳答案

您想要的示例是不可能的,因为数组键是唯一的。

你可能想要这样的东西:

$value['post_permalink'][] = get_permalink();

关于PHP - 如何在 while 循环中将数组合并为一个数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23085749/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com