如何在一个PHP脚本中执行两个连续的PHP脚本?

时间:2014-09-18 17:16:57

标签: php execute

我有两个PHP文件。

1)Create.php 2)Insert.php

我想创建一个执行以前PHP脚本的PHP文件 连续。

e.g。

    exec(Create.php);
    exec(Insert.php);

有什么办法可以执行这些PHP脚本吗? 我可以创建另一个可以执行以前脚本的PHP脚本吗?

由于

由于

1 个答案:

答案 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.
?>