东坡网 - 更多系统软件下载,请关注东坡网:www.dongpow.com

当前位置:首页 > 系统教程 > Linux教程 > 详细页面

Unix/Linux中如何直接执行PHP脚本文件?

时间:2017-08-17来源:东坡网作者:jianfang

  使用Linux系统的服务器都有搭建完整的PHP环境,因此有些用户会用PHP去写一些执行自动化任务的脚本,可是发现每次执行PHP脚本都需要使用php myscript.php的方式,感觉有点麻烦。其实我们是可以直接执行PHP脚本文件的,但是具体该怎么操作呢?下面小编就给大家介绍下Unix/Linux中如何直接执行PHP脚本文件。

Unix/Linux中如何直接执行PHP脚本文件?

  编写你的脚本文件

  这里我们编写一个名字为 test_run.php 的文件,文件的内容如下:

  Here is some plain text.

  Here is the file name:

  《?php

  echo $argv[0], PHP_EOL;

  ?》

  脚本内容很简单,就是把当前脚本文件的名称打印出来。

  然后,我们使用 PHP 命令执行一下这个脚本:

  yuanyu@ymac:phpworkspace $ php test_run.php hello

  Here is some plain text.

  Here is the file name:

  test_run.php

  yuanyu@ymac:phpworkspace $

  给脚本文件增加头信息,并且设置权限

  然后,在这个文件的第一行写上 php 命令的全路径,前面是一个 #!:

  #!/usr/bin/php

  Here is some plain text.

  Here is the file name:

  《?php

  echo $argv[0], PHP_EOL;

  ?》

  然后给这个文件赋予可执行的权限:

  yuanyu@ymac:phpworkspace $ chmod u+x 。/test_run.php

  接下来就可以直接执行这个脚本了:

  yuanyu@ymac:phpworkspace $ 。/test_run.php

  Here is some plain text.

  Here is the file name:

  。/test_run.php

  yuanyu@ymac:phpworkspace $

  这种方式在 PHP 官方文档中也是有说的,请参考:

  http://php.net/manual/en/features.commandline.usage.php

  文档中的

  “Example #2 Script intended to be run from command line (script.php)”

  以上就是Unix/Linux中直接执行PHP脚本文件的操作方法,不熟悉的用户可以参照上面介绍的具体步骤来操作。

分享到:

相关信息

  • Fedora系统ifconfig和netstat命令找不到的解决方法

    Fedora是Linux系统中的一种,大部分的操作也需要命令来完成,有用户反映在Fedora系统下使用ifconfig、netstat命令的时候,发现这2个命令找不到了,下面小编就给大家介绍下解决方法。...

    2023-03-16

  • Linux如何通过netstat命令查看80端口连接数

    Linux系统下netstat命令的用法有很多,能够列出所有端口,显示当前UDP连接状况,今天小编要给大家介绍的是Linux使用netstat命令查看80端口连接数的方法,不了解的朋友可以来学习下。...

    2023-03-16

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载

公众号