⑴使用Linux系统的服务器都有搭建完整的PHP环境,因此有些用户会用PHP去写一些执行自动化任务的脚本,可是发现每次执行PHP脚本都需要使用php myscript.php的方式,感觉有点麻烦。其实我们是可以直接执行PHP脚本文件的,但是具体该怎么操作呢?下面小编就给大家介绍下Unix/Linux中如何直接执行PHP脚本文件。
⑵编写你的脚本文件
⑶这里我们编写一个名字为 test_run.php 的文件,文件的内容如下:
⑷Here is some plain text.
⑸Here is the file name:
⑹echo $argv[], PHP_EOL;
⑺脚本内容很简单,就是把当前脚本文件的名称打印出来。
⑻然后,我们使用 PHP 命令执行一下这个脚本:
⑼yuanyuymac:phpworkspace $ php test_run.php hello
⑽Here is some plain text.
⑾Here is the file name:
⑿test_run.php
⒀yuanyuymac:phpworkspace $
⒁给脚本文件增加头信息,并且设置权限
⒂然后,在这个文件的第一行写上 php 命令的全路径,前面是一个 #!:
⒃#!/usr/bin/php
⒄Here is some plain text.
⒅Here is the file name:
⒆echo $argv[], PHP_EOL;
⒇然后给这个文件赋予可执行的权限:
⒈yuanyuymac:phpworkspace $ chmod u+x 。/test_run.php
⒉接下来就可以直接执行这个脚本了:
⒊yuanyuymac:phpworkspace $ 。/test_run.php
⒋Here is some plain text.
⒌Here is the file name:
⒍。/test_run.php
⒎yuanyuymac:phpworkspace $
⒏这种方式在 PHP 官方文档中也是有说的,请参考:
⒐“Example # Script intended to be run from mand line (script.php”
⒑以上就是Unix/Linux中直接执行PHP脚本文件的操作方法,不熟悉的用户可以参照上面介绍的具体步骤来操作。