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 文件。
代码:
<?PHP /* code execute another php file. Ex: \jobs\process.php return 0; ?>
include("path/filename"); require("path/filename"); require_once("path/filename"); include_once("path/filename");
您可以包含/要求它。
include("filename.php"); require("filename.php");
或者你可以使用
$output = shell_exec("php filename.php"); var_dump($output);
我推荐第一个解决方案:)
当从服务器请求一个 php 文件时,它会自动执行。
因此,您可以通过在当前文件中包含或要求该文件来执行它,如下所示:
<?php . . include 'file to be executed'; . . ?>
只需在文件顶部包含一个 php 文件。 include("filename.php");
include("filename.php");