如何让我的服务器通过使用php手动触发来运行php脚本?基本上我有一个相当大的cronjob文件,每2小时运行一次,但我希望能够自己手动触发文件,而不必等待它加载(我希望它在服务器端完成)。
编辑:我想从php文件执行文件...不是命令行。
答案 0 :(得分:99)
您可以从命令行手动调用PHP脚本
hello.php
<?php
echo 'hello world!';
?>
Command line:
php hello.php
Output:
hello world!
请参阅文档:http://php.net/manual/en/features.commandline.php
编辑 OP编辑了问题以添加关键细节:脚本将由另一个脚本执行。
有几种方法。首先也是最简单的,您可以简单地包含该文件。当您包含文件时,其中的代码是“已执行”(实际上,已解释)。任何不在函数或类体内的代码都将立即处理。请查看include
(docs)和/或require
(docs)的文档(注:include_once
和require_once
相关,但重要的是不同。查看文档以了解其中的差异)您的代码将如下所示:
include('hello.php');
/* output
hello world!
*/
第二个更复杂的是使用shell_exec
(docs)。使用shell_exec
,您将调用php二进制文件并将所需的脚本作为参数传递。你的代码看起来像这样:
$output = shell_exec('php hello.php');
echo "<pre>$output</pre>";
/* output
hello world!
*/
最后,也是最复杂的,您可以使用CURL库来调用文件,就像通过浏览器请求它一样。在此处查看CURL库文档:http://us2.php.net/manual/en/ref.curl.php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.myDomain.com/hello.php");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true)
$output = curl_exec($ch);
curl_close($ch);
echo "<pre>$output</pre>";
/* output
hello world!
*/
所用功能的文档
include
:http://us2.php.net/manual/en/function.include.php require
:http://us2.php.net/manual/en/function.require.php shell_exec
:http://us2.php.net/manual/en/function.shell-exec.php curl_init
:http://us2.php.net/manual/en/function.curl-init.php curl_setopt
:http://us2.php.net/manual/en/function.curl-setopt.php curl_exec
:http://us2.php.net/manual/en/function.curl-exec.php curl_close
:http://us2.php.net/manual/en/function.curl-close.php 答案 1 :(得分:7)
OP对如何从脚本调用php脚本改进了他的问题。 php语句'require'有利于依赖,因为如果找不到所需的脚本,脚本将停止。
#!/usr/bin/php
<?
require '/relative/path/to/someotherscript.php';
/* The above script runs as though executed from within this one. */
printf ("Hello world!\n");
?>
答案 2 :(得分:6)
你可以使用反引号表示法:
`php file.php`;
您也可以将它放在php文件的顶部以指示解释器:
#!/usr/bin/php
将其更改为放置php的位置。 然后为该文件授予执行权限,您可以在不指定php的情况下调用该文件:
`./file.php`
如果要捕获脚本的输出:
$output = `./file.php`;
echo $output;
答案 3 :(得分:2)
我更喜欢使用
require_once('phpfile.php');
为您提供了很多选择。并且是保持清洁的好方法。
答案 4 :(得分:1)
打开ssh并手动执行命令?
php /path/to/your/file.php
答案 5 :(得分:0)
如果它是一个linux盒子,你会运行类似:
php /folder/script.php
在Windows上,您需要确保您的php.exe文件是PATH的一部分,并对您要运行的文件执行类似的方法:
php C:\folder\script.php
答案 6 :(得分:0)
在命令行上:
> php yourfile.php
答案 7 :(得分:0)
<?php
$output = file_get_contents('http://host/path/another.php?param=value ');
echo $output;
?>
答案 8 :(得分:0)
可能且最简单的单行解决方案是使用:
file_get_contents("YOUR_REQUESTED_FILE");
或者等同于CURL。
答案 9 :(得分:0)
尝试一下:
header('location: xyz.php'); //thats all for redirecting to another php file
答案 10 :(得分:-1)
从你的代码中“链接”另一个php程序,使用“header”
header("Location:index.php?page=menus");
答案 11 :(得分:-4)
我认为这就是你要找的东西
<?php include ('Scripts/Php/connection.php');
//The connection.php script is executed inside the current file ?>
脚本文件也可以是.txt格式,它应该仍然有用,它适用于我
e.g。
<?php include ('Scripts/Php/connection.txt');
//The connection.txt script is executed inside the current file ?>