php如何返回的字符串数组并生成html表格
<?php
function getTable() {
$table = array(
array("ID", "Name", "Email"),
array("1", "xiaomi", "xiaomi@example.com"),
array("2", "xiaohua", "xiaohua@example.com"),
array("3", "lili", "lili@example.com")
);
return $table;
}
$tableData = getTable();
echo '<table border="1">';
foreach($tableData as $row) {
echo '<tr>';
foreach($row as $cell) {
echo '<td>' . $cell . '</td>';
}
echo '</tr>';
}
echo '</table>';
?>
以上是编程学习网小编为您介绍的“php如何返回的字符串数组并生成html表格”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。