Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在处理执行所选网站项目的 PHP 脚本。(仅在我的本地计算机上)。
我想要它做的是执行它可以在文件夹中找到的所有文件。当我添加例如 .php 文件或 .css 文件时,总是需要时间来更改代码。
我正在使用 Windows 7。
有可能吗?
到目前为止的代码:
exec("C:\\xampp\\htdocs\\project\\",$output, $return);
foreach (glob("path/ToFile/*.php") as $filename) { exec($filename, $output); // previously $Filename }
也许这可能会执行您需要的任务
foreach (glob("path/ToFile/*.php") as $filename) { echo $filename."<br>"; }
看看你是否收到任何文件