如何从另一个php文件执行php文件

时间:2013-06-17 13:27:41

标签: php

我有一个php文件,在底部我需要运行另一个php文件。

代码:

<?PHP
/*
code

execute another php file. Ex: \jobs\process.php
return 0;
?>

4 个答案:

答案 0 :(得分:2)

include("path/filename");
require("path/filename");

require_once("path/filename");

include_once("path/filename");

答案 1 :(得分:1)

您可include / require

include("filename.php");
require("filename.php");

或者您可以使用

$output = shell_exec("php filename.php"); 
var_dump($output);

我推荐第一个解决方案:)

答案 2 :(得分:0)

从服务器请求时,会自动执行php文件。

因此,您可以通过includingrequiring当前文件中的文件执行它,如下所示:

<?php
.
.
include 'file to be executed';
.
.
?>

答案 3 :(得分:0)

只需在文件顶部包含一个php文件即可。

    include("filename.php");