我是一个完整的php新手。所以我有这个脚本,其中包括在“items”目录中找到的所有 *.php 文件。
<?php
foreach (glob("products/items/*.php") as $filename)
{
include $filename;
}?>
我将如何将结果显示在单独的页面中(例如:每页最多 5 个项目(* .php 文件))?
谢谢。
我是一个完整的php新手。所以我有这个脚本,其中包括在“items”目录中找到的所有 *.php 文件。
<?php
foreach (glob("products/items/*.php") as $filename)
{
include $filename;
}?>
我将如何将结果显示在单独的页面中(例如:每页最多 5 个项目(* .php 文件))?
谢谢。