gpt4 book ai didi

表中的 PHP 数组使用 implode()

转载 作者:太空宇宙 更新时间:2023-11-04 14:13:24 26 4
gpt4 key购买 nike

我正在尝试将这些数组输出到 3x4 表格中。目前它只输出 1 列数组中新行中每个数组的第一个值。虽然它应该是 3 列,'qualitypoint'、'quality' 和 'q' 彼此相邻。然后在新的一行中,'technologies'、'tech' 和 't' 彼此相邻。

Output screenshot

<?php 
$Array1 = array('qualitypoint', 'technologies', 'India','Hey');
$Array2 = array('quality', 'tech', 'Ind','He');
$Array3 = array('q', 't', 'I','H');
echo '<table border = "3px">';
echo '<tr><td>' . implode('</tr><tr>', $Array1).'</td></tr>';
echo '<tr><td>' . implode('</tr><tr>', $Array2).'</td></tr>';
echo '<tr><td>' . implode('</tr><tr>', $Array3).'</td></tr>';
echo '</table>';
?>

最佳答案

implode('</td><td>', $Array1)

implode('</td><td>', $Array2)

implode('</td><td>', $Array3)

猜猜这就是你想做的......使用 td而不是 tr

关于表中的 PHP 数组使用 implode(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35206466/

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