Linux怎么直接執(zhí)行PHP腳本文件
最近迷上了php腳本,整天滿腦子都是php.也用php寫了一些腳本,甚至服務來完成一些日常服務器管理的任務,下面學習阿拉小編就給大家介紹下Unix/Linux中如何直接執(zhí)行PHP腳本文件。
Linux怎么直接執(zhí)行PHP腳本文件
使用Linux系統(tǒng)的服務器都有搭建完整的PHP環(huán)境,因此有些用戶會用PHP去寫一些執(zhí)行自動化任務的腳本,可是發(fā)現(xiàn)每次執(zhí)行PHP腳本都需要使用php myscript.php的方式,感覺有點麻煩。其實我們是可以直接執(zhí)行PHP腳本文件的
由于我們的服務器都是使用的 Linux 系統(tǒng),并且都有搭建完整的 PHP 環(huán)境,所以有時候我會用 PHP 寫一些執(zhí)行自動化任務的腳本,但是每次執(zhí)行這個 PHP 腳本都需要使用 php myscript.php 的方式,
編寫你的腳本文件
這里我們編寫一個名字為 test_run.php 的文件,文件的內(nèi)容如下:
Here is some plain text.
Here is the file name:
<?php
echo $argv[0], PHP_EOL;
?>
腳本內(nèi)容很簡單,就是把當前腳本文件的名稱打印出來。
然后,我們使用 PHP 命令執(zhí)行一下這個腳本:
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;
?>
然后給這個文件賦予可執(zhí)行的權限:
yuanyu@ymac:phpworkspace $ chmod u+x ./test_run.php
接下來就可以直接執(zhí)行這個腳本了:
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中直接執(zhí)行PHP腳本文件的操作方法,不熟悉的用戶可以參照上面介紹的具體步驟來操作。
看過“ Linux怎么直接執(zhí)行PHP腳本文件 ”的人還看了:
1.如何在Linux系統(tǒng)下使用Docker及Weave搭建Nginx的反向代理
2.怎么在windows系統(tǒng)中使用linux的shell腳本