有人可以帮我解决这个问题吗?
我有一个包含一些文件的文件夹(没有扩展名)
/模块/邮件/模板
使用这些文件:
- 测试
- 测试2
我想首先循环并读取文件名(test 和 test2)并将它们作为下拉项打印到我的 html 表单中。这行得通(表单 html 标记的其余部分在下面的代码上方和下方,此处省略)。
但我也想读取每个文件的内容并将内容分配给 var $content 并将其放在我以后可以使用的数组中。
这就是我尝试实现这一目标的方式,但没有运气:
foreach (glob("module/mail/templates/*") as $templateName)
{
$i++;
$content = file_get_contents($templateName, r); // This is not working
echo "<p>" . $content . "</p>"; // this is not working
$tpl = str_replace('module/mail/templates/', '', $templatName);
$tplarray = array($tpl => $content); // not working
echo "<option id=\"".$i."\">". $tpl . "</option>";
print_r($tplarray);//not working
}