在动态 table PHP 中显示数组中的数据

Displaying data from arrays in a dynamic table PHP

我有一个包含 20 张乡村艺术家照片的文件,以及一个包含他们网站的文本文件。我正在尝试使用 PHP.

在 4 行 5 列 table 中显示此数据

我尝试使用 foreach 循环对数组中的每 5 个元素进行迭代 (逐行加载每一行)

foreach(array_chunk($CountryArtists, 5, true) as $Value) {
    <table>
       <tr><td> $CountryArtists[$Value] $ArtistImages[$Value]</td>
    <td> $CountryArtists[$Value] $ArtistImages[$Value]</td>
    <td> $CountryArtists[$Value] $ArtistImages[$Value]</td>
    <td> $CountryArtists[$Value] $ArtistImages[$Value]</td>
    <td> $CountryArtists[$Value] $ArtistImages[$Value]</td></tr>
</table>

我一直在想办法将图像加载到数组中,但没有成功。我开始认为我必须将对文件位置的引用放在数组中,但我不确定。

$colsToDisplay = 5;
$CountryArtists = array("C:\Users\THEFOLDER\images");
$ArtistImages = array("AJackson", "BShelton", "CUnderwood", "DBentley", "DLJones", "DRucker", "JAldean", "JCash", "JJohnson", "JStrait", "KChesney", "LAntebellum", "LDavis", "LRimes", "MLambert", "MMcBride", RTravis", "STwain", TKeith", TMcgraw");
$filename = "C:\Users\THEFOLDER\images";

我对 PHP 比较陌生,真的只需要知道如何加载我的图像以及如何使 table 正确显示。

编辑:

我在 table 行中添加了回显,但它只在浏览器输出中显示回显:

" echo " $CountryArtists[$Value] $ArtistImages[$Value]" echo " .$CountryArtists[$Value]. $ArtistImages[$Value]" echo " .$CountryArtists[$Value]. $ArtistImages[$Value]" echo " .$CountryArtists[$Value]. $ArtistImages[$Value]" echo " .$CountryArtists[$Value]. $ArtistImages[$Value]" echo "" } ?>

我的代码现在看起来像这样:

foreach(array_chunk($CountryArtists, 5, true) as $Value) {
    echo "<table>"
    echo "<tr><td> $CountryArtists[$Value] $ArtistImages[$Value]</td>"
    echo "<td> .$CountryArtists[$Value]. $ArtistImages[$Value]</td>"
    echo "<td> .$CountryArtists[$Value]. $ArtistImages[$Value]</td>"
    echo "<td> .$CountryArtists[$Value]. $ArtistImages[$Value]</td>"
    echo "<td> .$CountryArtists[$Value]. $ArtistImages[$Value]</td></tr>"
    echo "</table>"
}

我觉得我做错了,如果能指出来,我将不胜感激。

完整文件

 <!DOCTYPE HTML>
<html>
<body>

<?php
$ArtistImages = array("AJackson", "BShelton", "CUnderwood", "DBentley", "DLJones", "DRucker", "JAldean", "JCash", "JJohnson", "JStrait", "KChesney", "LAntebellum", "LDavis", "LRimes", "MLambert", "MMcBride", "RTravis", "STwain", "TKeith", "TMcgraw");
$count  =   count($ArtistImages);
$cols   =   6;
$div    =   (int) $count / (int)$cols;
$diff   =   ceil($div);
echo
$fin    =   $cols * $diff;

$a = 1;
echo '<table>';
for($i = 0; $i < $fin; $i++) {
    if($a == 1)
        echo "\t<tr>".PHP_EOL;

    $artist =   (!empty($ArtistImages[$i]))? $ArtistImages[$i]: "";
    echo "\t\t".'<td>'.$artist.'</td>'.PHP_EOL;

    if($a == $cols) {
            echo "\t</tr>".PHP_EOL;
            $a=0;
        }

    $a++;
}
echo '</table>';
?>

</body>
</html>

在 php 文件中,您需要回显所需的数据。 但是,如果您在 php 文件中,您可以像这样关闭 php。 ? > 并编写 html 代码。 当您想要显示 php 属性时,您需要再次打开一个 php,如下所示: 并继续这样...... Php fcan only return string or json data 让我知道它是否适合你....

我想您可能正在寻找与此算法类似的东西。它每 5 个值添加一行。您将需要做一个除数使其 ceil() 以使其添加任何所需的空单元格。如果您执行 <ul><li> 并使用 CSS 使它们像 table 一样显示,您可以为每个执行此操作。那么你就不需要计算额外的单元格了。

$i = 1;
echo '<table>';
foreach($array as $value) {
    if($i == 1)
        echo "<tr>";

    echo '<td>'.$value.'</td>';

    if($i == 5) {
            echo "</tr>";
            $i=0;
        }

    $i++;
}
echo '</table>';

编辑:

这是一个基于你的更实用的版本:

$ArtistImages = array("AJackson", "BShelton", "CUnderwood", "DBentley", "DLJones", "DRucker", "JAldean", "JCash", "JJohnson", "JStrait", "KChesney", "LAntebellum", "LDavis", "LRimes", "MLambert", "MMcBride", "RTravis", "STwain", "TKeith", "TMcgraw");

// Count total artists in array
$count  =   count($ArtistImages);
// Choose how many to display per row
$cols   =   6;
// Divide the total by the columns
$div    =   (int) $count / (int)$cols;
// Round up (incase the number will produce empty cells
$diff   =   ceil($div);
// Mulitply the final numbers
$fin    =   $cols * $diff;
// Create an autoincrementer to keep track of next rows
$a = 1;
echo '<table>'.PHP_EOL;
for($i = 0; $i < $fin; $i++) {
    if($a == 1)
        echo "\t<tr>".PHP_EOL;
    // You need to see if this artist is populated. If not, make empty
    // If left without this it will have a warning saying not exists
    $artist =   (!empty($ArtistImages[$i]))? $ArtistImages[$i]: "";
    echo "\t\t".'<td>'.$artist.'</td>'.PHP_EOL;
    if($a == $cols) {
            echo "\t</tr>".PHP_EOL;
            $a=0;
        }

    $a++;
}
echo '</table>';