我有两个PHP文件。
1)Create.php 2)Insert.php
我想创建一个执行以前PHP脚本的PHP文件 连续。
e.g。
exec(Create.php);
exec(Insert.php);
有什么办法可以执行这些PHP脚本吗? 我可以创建另一个可以执行以前脚本的PHP脚本吗?
由于
由于
答案 0 :(得分:1)
您只需添加它们(require
是此关键字):
<?php
require Create.php;
require Insert.php;
// depending on what the files contain, you can now execute their
// functions, instantiate their classes, or in case they produce
// direct output, it will be visible now.
?>