我想使用 php 创建一个代码,该代码foreach (glob())
将从网络附加存储 (NAS) 加载我的 pdf 文件,这可能吗?foreach (glob())
或者除了使用... 之外还有其他选项可以使用
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<table class="table table-striped table-hover data-table">
<thead>
<tr>
<th>Forecast</th>
<th>Date Issued</th>
<th>#</th>
<th>#</th>
<th>#</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<?php foreach(glob("pdf/*.pdf") as $file) { ?>
<tr>
<td><a href="<?php echo $file; ?>"><?php echo $file; ?></a></td>
<td>ss</td>
<td>wdwad</td>
<td>adwwad</td>
<td>wdawd</td>
<td>dwa</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
</div>