如何将PHP作为Shell脚本语言使用

来源:互联网 发布:abp源码 编辑:程序博客网 时间:2024/05/21 21:44
我们都知道,PHP是一种非常好的动态网页开发语言(速度飞快,开发周期短……)。但是只有很少数的人意识到PHP也可以很好的作为编写Shell脚本的语言,当PHP作为编写Shell脚本的语言时,他并没有Perl或者Bash那么强大,但是他却有着很好的优势,特别是对于我这种熟悉PHP但是不怎么熟悉Perl的人。 
要使用PHP作为Shell脚本语言,你必须将PHP作为二进制的CGI编译,而不是Apache模式;编译成为二进制CGI模式运行的PHP有一些安全性的问题,关于解决的方法可以参见PHP手册(http://www.php.net)。 
一开始你可能会对于编写Shell脚本感到不适应,但是会慢慢好起来的:将PHP作为一般的动态网页编写语言和作为Shell脚本语言的唯一不同就在于一个Shell脚本需要在第一行生命解释本脚本的程序路径: 
#!/usr/local/bin/php -q 
我们在PHP执行文件后面加入了参数“-1”,这样子PHP就不会输出HTTP Header(如果仍需要作为Web的动态网页,那么你需要自己使用header函数输出HTTP Header)。当然,在Shell脚本的里面你还是需要使用PHP的开始和结束标记: 

现在让我们看一个例子,以便于更好的了解用PHP作为Shell脚本语言的使用: 
#!/usr/local/bin/php -q 
print("Hello, world!\n"); 
?> 

上面这个程序会简单的输出“Hello, world!”到显示器上。 
一、传递Shell脚本运行参数给PHP: 
作为一个Shell脚本,经常会在运行程序时候加入一些参数,PHP作为Shell脚本时有一个内嵌的数组“$argv”,使用“$argv”数组可以很方便的读取Shell脚本运行时候的参数(“$argv[1]”对应的是第一个参数,“$argv[2]”对应的是第二个参数,依此类推)。比如下面这个程序: 
#!/usr/local/bin/php -q 
$first_name = $argv[1]; 
$last_name = $argv[2]; 
printf("Hello, %s %s! How are you today?\n", $first_name, $last_name); 
?> 

上面的代码在运行的时候需要两个参数,分别是姓和名,比如这样子运行: 
[dbrogdon@artemis dbrogdon]$scriptname.ph Darrell Brogdon 
Shell脚本在显示器上面会输出: 
Hello, Darrell Brogdon! How are you today? 
[dbrogdon@artemis dbrogdon]$ 

在PHP 作为动态网页编写语言的时候也含有“$argv”这个数组,不过和这里有一些不同:当PHP作为Shell脚本语言的时候“$argv[0]”对应的是脚本的文件名,而当用于动态网页编写的时候,“$argv[1]”对应的是QueryString的第一个参数。 


二、编写一个具有交互式的Shell脚本: 
如果一个Shell脚本仅仅是自己运行,失去了交互性,那么也没有什么意思了。当PHP用于Shell脚本的编写的时候,怎么读取用户输入的信息呢?很不幸的是PHP自身没有读取用户输入信息的函数或者方法,但是我们可以效仿其他语言编写一个读取用户输入信息的函数“read”: 
function read() { 
$fp = fopen('/dev/stdin', 'r'); 
$input = fgets($fp, 255); 
fclose($fp); 
return $input; 

?> 
需要注意的是上面这个函数只能用于Unix系统(其他系统需要作相应的改变)。上面的函数会打开一个文件指针,然后读取一个不超过255字节的行(就是fgets的作用),然后会关闭文件指针,返回读取的信息。 
现在我们可以使用函数“read”将我们前面编写的程序1修改一下,使他更加具有“交互性”了:
#!/usr/local/bin/php -q 
function read() { 
$fp = fopen('/dev/stdin', 'r'); 
$input = fgets($fp, 255); 
fclose($fp); 
return $input; 

print("What is your first name? "); 
$first_name = read(); 
print("What is your last name? "); 
$last_name = read(); 
print("\nHello, $first_name $last_name! Nice to meet you!\n"); 
?> 
将上面的程序保存下来,运行一下,你可能会看到一件预料之外的事情:最后一行的输入变成了三行!这是因为“read”函数返回的信息还包括了用户每一行的结尾换行符“\n”,保留到了姓和名中,要去掉结尾的换行符,需要把“read”函数修改一下: 
function read() { 
$fp = fopen('/dev/stdin', 'r'); 
$input = fgets($fp, 255); 
fclose($fp); 
$input = chop($input); // 去除尾部空白 
return $input; 

?> 
三、在其他语言编写的Shell脚本中包含PHP编写的Shell脚本: 
有时候我们可能需要在其他语言编写的Shell脚本中包含PHP编写的Shell脚本。其实非常简单,下面是一个简单的例子: 
#!/bin/bash 
echo This is the Bash section of the code. 
/usr/local/bin/php -q << EOF 
print("This is the PHP section of the code\n"); 
?> 
EOF 
其实就是调用PHP来解析下面的代码,然后输出;那么,再试试下面的代码: 
#!/bin/bash 
echo This is the Bash section of the code. 
/usr/local/bin/php -q << EOF 
$myVar = 'PHP'; 
http://www.hao360.cn/information-id-7310381.htm http://www.hao360.cn/information-id-7310377.htm http://www.hao360.cn/information-id-7310373.htm http://www.hao360.cn/information-id-7310369.htm http://www.hao360.cn/information-id-7310365.htm http://www.hao360.cn/information-id-7310361.htm http://www.hao360.cn/information-id-7310356.htm http://www.hao360.cn/information-id-7310351.htm http://www.hao360.cn/information-id-7310348.htm http://www.hao360.cn/information-id-7310343.htm http://www.hao360.cn/information-id-7310340.htm http://www.hao360.cn/information-id-7310337.htm http://www.hao360.cn/information-id-7310330.htm http://www.hao360.cn/information-id-7310326.htm http://www.hao360.cn/information-id-7310316.htm http://www.hao360.cn/information-id-7310303.htm http://www.hao360.cn/information-id-7310298.htm http://www.hao360.cn/information-id-7310293.htm http://www.hao360.cn/information-id-7310289.htm http://www.hao360.cn/information-id-7310285.htm http://www.hao360.cn/information-id-7310276.htm http://www.hao360.cn/information-id-7310263.htm http://www.hao360.cn/information-id-7310259.htm http://www.hao360.cn/information-id-7310256.htm http://www.hao360.cn/information-id-7310248.htm http://www.hao360.cn/information-id-7310243.htm http://www.hao360.cn/information-id-7310240.htm http://www.hao360.cn/information-id-7310235.htm http://www.hao360.cn/information-id-7310232.htm http://www.hao360.cn/information-id-7310223.htm http://www.hao360.cn/information-id-7310219.htm http://www.hao360.cn/information-id-7310205.htm http://www.hao360.cn/information-id-7310202.htm http://www.hao360.cn/information-id-7310198.htm http://www.hao360.cn/information-id-7310187.htm http://www.hao360.cn/information-id-7310184.htm http://www.hao360.cn/information-id-7310179.htm http://www.hao360.cn/information-id-7310175.htm http://www.hao360.cn/information-id-.htm http://www.hao360.cn/information-id-7310165.htm http://www.hao360.cn/information-id-7310158.htm http://www.hao360.cn/information-id-7310155.htm http://www.hao360.cn/information-id-7310150.htm http://www.hao360.cn/information-id-7310147.htm http://www.hao360.cn/information-id-7310133.htm http://www.hao360.cn/information-id-7310124.htm http://www.hao360.cn/information-id-7310121.htm http://www.hao360.cn/information-id-7310107.htm http://www.hao360.cn/information-id-7310103.htm http://www.hao360.cn/information-id-7310098.htm http://www.hao360.cn/information-id-7310095.htm http://www.hao360.cn/information-id-7310090.htm http://www.hao360.cn/information-id-7310087.htm http://www.hao360.cn/information-id-7310078.htm http://www.hao360.cn/information-id-7310065.htm http://www.hao360.cn/information-id-7310061.htm http://www.hao360.cn/information-id-7310055.htm http://www.hao360.cn/information-id-7310045.htm http://www.hao360.cn/information-id-7310041.htm http://www.hao360.cn/information-id-7310036.htm http://www.hao360.cn/information-id-7310032.htm http://www.hao360.cn/information-id-7310028.htm http://www.hao360.cn/information-id-7310020.htm http://www.hao360.cn/information-id-7310016.htm http://www.hao360.cn/information-id-7310001.htm http://www.hao360.cn/information-id-7309997.htm http://www.hao360.cn/information-id-7309984.htm http://www.hao360.cn/information-id-7309979.htm http://www.hao360.cn/information-id-7309975.htm http://www.hao360.cn/information-id-7309972.htm http://www.hao360.cn/information-id-7309966.htm http://www.hao360.cn/information-id-7309963.htm http://www.hao360.cn/information-id-7309942.htm http://www.hao360.cn/information-id-7309939.htm http://www.hao360.cn/information-id-7309935.htm http://www.hao360.cn/information-id-7309931.htm http://www.hao360.cn/information-id-7309926.htm http://www.hao360.cn/information-id-7309923.htm http://www.hao360.cn/information-id-7309919.htm http://www.hao360.cn/information-id-7309914.htm http://www.hao360.cn/information-id-7309899.htm http://www.hao360.cn/information-id-7309893.htm http://www.hao360.cn/information-id-7309890.htm http://www.hao360.cn/information-id-7309875.htm http://www.hao360.cn/information-id-7309871.htm http://www.hao360.cn/information-id-7309867.htm http://www.hao360.cn/information-id-7309862.htm http://www.hao360.cn/information-id-7309859.htm http://www.hao360.cn/information-id-7309851.htm http://www.hao360.cn/information-id-7309848.htm http://www.hao360.cn/information-id-7309843.htm http://www.hao360.cn/information-id-7309837.htm http://www.hao360.cn/information-id-7309831.htm http://www.hao360.cn/information-id-7309827.htm http://www.hao360.cn/information-id-7309822.htm http://www.hao360.cn/information-id-7309819.htm http://www.hao360.cn/information-id-7309813.htm http://www.hao360.cn/information-id-7309799.htm http://www.hao360.cn/information-id-7309795.htm http://www.hao360.cn/information-id-7309790.htm http://www.hao360.cn/information-id-7309787.htm http://www.hao360.cn/information-id-7309783.htm http://www.hao360.cn/information-id-7309777.htm http://www.hao360.cn/information-id-7309773.htm http://www.hao360.cn/information-id-7309768.htm http://www.hao360.cn/information-id-7309763.htm http://www.hao360.cn/information-id-7309760.htm http://www.hao360.cn/information-id-7309755.htm http://www.hao360.cn/information-id-7309752.htm http://www.hao360.cn/information-id-7309737.htm http://www.hao360.cn/information-id-7309732.htm http://www.hao360.cn/information-id-7309729.htm http://www.hao360.cn/information-id-7309724.htm http://www.hao360.cn/information-id-7309720.htm http://www.hao360.cn/information-id-7309713.htm http://www.hao360.cn/information-id-7309709.htm http://www.hao360.cn/information-id-7309703.htm http://www.hao360.cn/information-id-7309697.htm http://www.hao360.cn/information-id-7309690.htm http://www.hao360.cn/information-id-7309687.htm http://www.hao360.cn/information-id-7309681.htm http://www.hao360.cn/information-id-7309667.htm http://www.hao360.cn/information-id-7309663.htm http://www.hao360.cn/information-id-7309659.htm http://www.hao360.cn/information-id-7309654.htm http://www.hao360.cn/information-id-7309648.htm http://www.hao360.cn/information-id-7309642.htm http://www.hao360.cn/information-id-7309636.htm http://www.hao360.cn/information-id-7309632.htm http://www.hao360.cn/information-id-7309626.htm http://www.hao360.cn/information-id-7309622.htm http://www.hao360.cn/information-id-7309615.htm http://www.hao360.cn/information-id-7309612.htm http://www.hao360.cn/information-id-7309608.htm http://www.hao360.cn/information-id-7309591.htm http://www.hao360.cn/information-id-7309587.htm http://www.hao360.cn/information-id-7309581.htm http://www.hao360.cn/information-id-7309577.htm http://www.hao360.cn/information-id-7309573.htm http://www.hao360.cn/information-id-7309569.htm http://www.hao360.cn/information-id-7309566.htm http://www.hao360.cn/information-id-7309561.htm http://www.hao360.cn/information-id-7309558.htm http://www.hao360.cn/information-id-7309554.htm http://www.hao360.cn/information-id-7309551.htm http://www.hao360.cn/information-id-7309547.htm http://www.hao360.cn/information-id-7309542.htm http://www.hao360.cn/information-id-7309538.htm http://www.hao360.cn/information-id-7309535.htm http://www.hao360.cn/information-id-7309530.htm http://www.hao360.cn/information-id-7309517.htm http://www.hao360.cn/information-id-7309513.htm http://www.hao360.cn/information-id-7309510.htm http://www.hao360.cn/information-id-7309506.htm http://www.hao360.cn/information-id-7309502.htm http://www.hao360.cn/information-id-7309498.htm http://www.hao360.cn/information-id-7309493.htm http://www.hao360.cn/information-id-7309487.htm http://www.hao360.cn/information-id-7309483.htm http://www.hao360.cn/information-id-7309478.htm http://www.hao360.cn/information-id-7309475.htm http://www.hao360.cn/information-id-7309470.htm http://www.hao360.cn/information-id-7309466.htm http://www.hao360.cn/information-id-7309461.htm http://www.hao360.cn/information-id-7309458.htm http://www.hao360.cn/information-id-7309452.htm http://www.hao360.cn/information-id-7309437.htm http://www.hao360.cn/information-id-7309432.htm http://www.hao360.cn/information-id-7309428.htm http://www.hao360.cn/information-id-7309424.htm http://www.hao360.cn/information-id-7309418.htm http://www.hao360.cn/information-id-7309414.htm http://www.hao360.cn/information-id-7309408.htm http://www.hao360.cn/information-id-7309401.htm http://www.hao360.cn/information-id-7309394.htm http://www.hao360.cn/information-id-7309389.htm http://www.hao360.cn/information-id-7309376.htm http://www.hao360.cn/information-id-7309368.htm http://www.hao360.cn/information-id-7309361.htm http://www.hao360.cn/information-id-7309355.htm http://www.hao360.cn/information-id-7309349.htm http://www.hao360.cn/information-id-7309341.htm http://www.hao360.cn/information-id-7309335.htm http://www.hao360.cn/information-id-7309329.htm http://www.hao360.cn/information-id-7309324.htm http://www.hao360.cn/information-id-7309320.htm http://www.hao360.cn/information-id-7309313.htm http://www.hao360.cn/information-id-7309309.htm http://www.hao360.cn/information-id-7309303.htm http://www.hao360.cn/information-id-7309297.htm http://www.hao360.cn/information-id-7309281.htm http://www.hao360.cn/information-id-7309277.htm http://www.hao360.cn/information-id-7309270.htm http://www.hao360.cn/information-id-7309265.htm http://www.hao360.cn/information-id-7309258.htm http://www.hao360.cn/information-id-7309244.htm http://www.hao360.cn/information-id-7309227.htm http://www.hao360.cn/information-id-7309220.htm http://www.hao360.cn/information-id-7309216.htm http://www.hao360.cn/information-id-7309210.htm http://www.hao360.cn/information-id-7309206.htm http://www.hao360.cn/information-id-7309201.htm http://www.hao360.cn/information-id-7309194.htm http://www.hao360.cn/information-id-7309176.htm http://www.hao360.cn/information-id-7309173.htm http://www.hao360.cn/information-id-7309167.htm http://www.hao360.cn/information-id-7309150.htm http://www.hao360.cn/information-id-7309142.htm http://www.hao360.cn/information-id-7309139.htm http://www.hao360.cn/information-id-7309134.htm http://www.hao360.cn/information-id-7309119.htm http://www.hao360.cn/information-id-7309113.htm http://www.hao360.cn/information-id-7309109.htm http://www.hao360.cn/information-id-7309095.htm http://www.hao360.cn/information-id-7309091.htm http://www.hao360.cn/information-id-7309075.htm http://www.hao360.cn/information-id-7309071.htm http://www.hao360.cn/information-id-7309067.htm http://www.hao360.cn/information-id-7309051.htm http://www.hao360.cn/information-id-7309046.htm http://www.hao360.cn/information-id-7309033.htm http://www.hao360.cn/information-id-7309028.htm http://www.hao360.cn/information-id-7309025.htm http://www.hao360.cn/information-id-7309021.htm http://www.hao360.cn/information-id-7309015.htm http://www.hao360.cn/information-id-7309010.htm http://www.hao360.cn/information-id-7309004.htm http://www.hao360.cn/information-id-7309000.htm http://www.hao360.cn/information-id-7308992.htm http://www.hao360.cn/information-id-7308988.htm http://www.hao360.cn/information-id-7308984.htm http://www.hao360.cn/information-id-7308979.htm http://www.hao360.cn/information-id-7308973.htm http://www.hao360.cn/information-id-7308969.htm http://www.hao360.cn/information-id-7308964.htm http://www.hao360.cn/information-id-7308961.htm http://www.hao360.cn/information-id-7308956.htm http://www.hao360.cn/information-id-7308949.htm http://www.hao360.cn/information-id-7308943.htm http://www.hao360.cn/information-id-7308938.htm http://www.hao360.cn/information-id-7308931.htm http://www.hao360.cn/information-id-7308926.htm http://www.hao360.cn/information-id-7308921.htm http://www.hao360.cn/information-id-7308916.htm http://www.hao360.cn/information-id-7308911.htm http://www.hao360.cn/information-id-7308895.htm http://www.hao360.cn/information-id-7308890.htm http://www.hao360.cn/information-id-7308886.htm http://www.hao360.cn/information-id-7308879.htm http://www.hao360.cn/information-id-7308875.htm http://www.hao360.cn/information-id-7308869.htm http://www.hao360.cn/information-id-7308864.htm http://www.hao360.cn/information-id-7308857.htm http://www.hao360.cn/information-id-7308842.htm http://www.hao360.cn/information-id-7308828.htm http://www.hao360.cn/information-id-7308821.htm http://www.hao360.cn/information-id-7308816.htm http://www.hao360.cn/information-id-7308809.htm http://www.hao360.cn/information-id-7308793.htm http://www.hao360.cn/information-id-7308778.htm http://www.hao360.cn/information-id-7308773.htm http://www.hao360.cn/information-id-7308764.htm http://www.hao360.cn/information-id-7308755.htm http://www.hao360.cn/information-id-7308750.htm http://www.hao360.cn/information-id-7308745.htm http://www.hao360.cn/information-id-7308741.htm http://www.hao360.cn/information-id-7308735.htm http://www.hao360.cn/information-id-7308729.htm http://www.hao360.cn/information-id-7308724.htm http://www.hao360.cn/information-id-7308705.htm http://www.hao360.cn/information-id-7308699.htm http://www.hao360.cn/information-id-7308696.htm http://www.hao360.cn/information-id-7308678.htm http://www.hao360.cn/information-id-7308673.htm http://www.hao360.cn/information-id-7308668.htm http://www.hao360.cn/information-id-7308661.htm http://www.hao360.cn/information-id-7308657.htm http://www.hao360.cn/information-id-7308650.htm http://www.hao360.cn/information-id-7308637.htm http://www.hao360.cn/information-id-7308632.htm http://www.hao360.cn/information-id-7308629.htm http://www.hao360.cn/information-id-7308624.htm http://www.hao360.cn/information-id-7308609.htm http://www.hao360.cn/information-id-7308602.htm http://www.hao360.cn/information-id-7308598.htm http://www.hao360.cn/information-id-7308593.htm http://www.hao360.cn/information-id-7308587.htm http://www.hao360.cn/information-id-7308583.htm http://www.hao360.cn/information-id-7308579.htm http://www.hao360.cn/information-id-7308576.htm http://www.hao360.cn/information-id-7308572.htm http://www.hao360.cn/information-id-7308567.htm http://www.hao360.cn/information-id-7308562.htm http://www.hao360.cn/information-id-7308556.htm http://www.hao360.cn/information-id-7308550.htm http://www.hao360.cn/information-id-7308545.htm http://www.hao360.cn/information-id-7308533.htm http://www.hao360.cn/information-id-7308526.htm http://www.hao360.cn/information-id-7308520.htm http://www.hao360.cn/information-id-7308514.htm http://www.hao360.cn/information-id-7308510.htm http://www.hao360.cn/information-id-7308505.htm http://www.hao360.cn/information-id-7308489.htm http://www.hao360.cn/information-id-7308484.htm http://www.hao360.cn/information-id-7308480.htm http://www.hao360.cn/information-id-7308464.htm http://www.hao360.cn/information-id-7308459.htm http://www.hao360.cn/information-id-7308446.htm http://www.hao360.cn/information-id-7308442.htm http://www.hao360.cn/information-id-7308438.htm http://www.hao360.cn/information-id-7308434.htm http://www.hao360.cn/information-id-7308427.htm http://www.hao360.cn/information-id-7308415.htm http://www.hao360.cn/information-id-7308411.htm http://www.hao360.cn/information-id-7308394.htm http://www.hao360.cn/information-id-7308390.htm http://www.hao360.cn/information-id-7308386.htm http://www.hao360.cn/information-id-7308371.htm http://www.hao360.cn/information-id-7308366.htm http://www.hao360.cn/information-id-7308360.htm http://www.hao360.cn/information-id-7308357.htm http://www.hao360.cn/information-id-7308353.htm http://www.hao360.cn/information-id-7308336.htm http://www.hao360.cn/information-id-7308332.htm http://www.hao360.cn/information-id-7308318.htm http://www.hao360.cn/information-id-7308314.htm http://www.hao360.cn/information-id-7308309.htm http://www.hao360.cn/information-id-7308294.htm http://www.hao360.cn/information-id-7308292.htm http://www.hao360.cn/information-id-7308289.htm http://www.hao360.cn/information-id-7308274.htm http://www.hao360.cn/information-id-7308268.htm http://www.hao360.cn/information-id-7308254.htm http://www.hao360.cn/information-id-7308248.htm http://www.hao360.cn/information-id-7308244.htm http://www.hao360.cn/information-id-7308238.htm http://www.hao360.cn/information-id-7308222.htm http://www.hao360.cn/information-id-7308217.htm http://www.hao360.cn/information-id-7308210.htm http://www.hao360.cn/information-id-7308204.htm http://www.hao360.cn/information-id-7308200.htm http://www.hao360.cn/information-id-7308196.htm http://www.hao360.cn/information-id-7308189.htm http://www.hao360.cn/information-id-7308185.htm http://www.hao360.cn/information-id-7308169.htm http://www.hao360.cn/information-id-7308166.htm http://www.hao360.cn/information-id-7308146.htm http://www.hao360.cn/information-id-7308143.htm http://www.hao360.cn/information-id-7308139.htm http://www.hao360.cn/information-id-7308135.htm http://www.hao360.cn/information-id-7308131.htm http://www.hao360.cn/information-id-7308126.htm http://www.hao360.cn/information-id-7308123.htm http://www.hao360.cn/information-id-7308119.htm http://www.hao360.cn/information-id-7308115.htm http://www.hao360.cn/information-id-7308110.htm http://www.hao360.cn/information-id-7308105.htm http://www.hao360.cn/information-id-7308100.htm http://www.hao360.cn/information-id-7308096.htm http://www.hao360.cn/information-id-7308091.htm http://www.hao360.cn/information-id-7308087.htm http://www.hao360.cn/information-id-7308083.htm http://www.hao360.cn/information-id-7308078.htm http://www.hao360.cn/information-id-7308074.htm http://www.hao360.cn/information-id-7308069.htm http://www.hao360.cn/information-id-7308066.htm http://www.hao360.cn/information-id-7308062.htm http://www.hao360.cn/information-id-7308056.htm http://www.hao360.cn/information-id-7308043.htm http://www.hao360.cn/information-id-7308039.htm http://www.hao360.cn/information-id-7308035.htm http://www.hao360.cn/information-id-7308029.htm http://www.hao360.cn/information-id-7308025.htm http://www.hao360.cn/information-id-7308019.htm http://www.hao360.cn/information-id-7308016.htm http://www.hao360.cn/information-id-7308011.htm http://www.hao360.cn/information-id-7308007.htm http://www.hao360.cn/information-id-7308002.htm http://www.hao360.cn/information-id-7307998.htm http://www.hao360.cn/information-id-7307994.htm http://www.hao360.cn/information-id-7307988.htm http://www.hao360.cn/information-id-7307986.htm http://www.hao360.cn/information-id-7307981.htm http://www.hao360.cn/information-id-7307961.htm http://www.hao360.cn/information-id-7307956.htm http://www.hao360.cn/information-id-7307951.htm http://www.hao360.cn/information-id-7307945.htm http://www.hao360.cn/information-id-7307940.htm http://www.hao360.cn/information-id-7307937.htm http://www.hao360.cn/information-id-7307931.htm http://www.hao360.cn/information-id-7307916.htm http://www.hao360.cn/information-id-7307913.htm http://www.hao360.cn/information-id-7307906.htm http://www.hao360.cn/information-id-7307903.htm http://www.hao360.cn/information-id-7307895.htm http://www.hao360.cn/information-id-7307889.htm http://www.hao360.cn/information-id-7307886.htm http://www.hao360.cn/information-id-7307881.htm http://www.hao360.cn/information-id-7307875.htm http://www.hao360.cn/information-id-7307871.htm http://www.hao360.cn/information-id-7307867.htm http://www.hao360.cn/information-id-7307864.htm http://www.hao360.cn/information-id-7307859.htm http://www.hao360.cn/information-id-7307851.htm http://www.hao360.cn/information-id-7307847.htm http://www.hao360.cn/information-id-7307841.htm http://www.hao360.cn/information-id-7307825.htm http://www.hao360.cn/information-id-7307821.htm http://www.hao360.cn/information-id-7307814.htm http://www.hao360.cn/information-id-7307809.htm http://www.hao360.cn/information-id-7307804.htm http://www.hao360.cn/information-id-7307798.htm http://www.hao360.cn/information-id-7307795.htm http://www.hao360.cn/information-id-7307790.htm http://www.hao360.cn/information-id-7307787.htm http://www.hao360.cn/information-id-7307780.htm http://www.hao360.cn/information-id-7307771.htm http://www.hao360.cn/information-id-7307768.htm http://www.hao360.cn/information-id-7307763.htm http://www.hao360.cn/information-id-7307758.htm http://www.hao360.cn/information-id-7307755.htm http://www.hao360.cn/information-id-7307740.htm http://www.hao360.cn/information-id-7307735.htm http://www.hao360.cn/information-id-7307733.htm http://www.hao360.cn/information-id-7307728.htm http://www.hao360.cn/information-id-7307724.htm http://www.hao360.cn/information-id-7307719.htm http://www.hao360.cn/information-id-7307715.htm http://www.hao360.cn/information-id-7307711.htm http://www.hao360.cn/information-id-7307706.htm http://www.hao360.cn/information-id-7307702.htm http://www.hao360.cn/information-id-7307696.htm http://www.hao360.cn/information-id-7307693.htm http://www.hao360.cn/information-id-7307686.htm http://www.hao360.cn/information-id-7307672.htm http://www.hao360.cn/information-id-7307667.htm http://www.hao360.cn/information-id-7307664.htm http://www.hao360.cn/information-id-7307660.htm http://www.hao360.cn/information-id-7307656.htm http://www.hao360.cn/information-id-7307651.htm http://www.hao360.cn/information-id-7307647.htm http://www.hao360.cn/information-id-.htm http://www.hao360.cn/information-id-7307629.htm http://www.hao360.cn/information-id-7307626.htm http://www.hao360.cn/information-id-7307622.htm http://www.hao360.cn/information-id-7307618.htm http://www.hao360.cn/information-id-7307613.htm http://www.hao360.cn/information-id-7307609.htm http://www.hao360.cn/information-id-7307605.htm http://www.hao360.cn/information-id-7307600.htm http://www.hao360.cn/information-id-7307597.htm http://www.hao360.cn/information-id-7307590.htm http://www.hao360.cn/information-id-7307584.htm http://www.hao360.cn/information-id-7307580.htm http://www.hao360.cn/information-id-.htm http://www.hao360.cn/information-id-7307561.htm http://www.hao360.cn/information-id-7307558.htm http://www.hao360.cn/information-id-7307554.htm http://www.hao360.cn/information-id-7307549.htm http://www.hao360.cn/information-id-7307544.htm http://www.hao360.cn/information-id-7307539.htm http://www.hao360.cn/information-id-7307536.htm http://www.hao360.cn/information-id-7307534.htm http://www.hao360.cn/information-id-7307525.htm http://www.hao360.cn/information-id-7307521.htm http://www.hao360.cn/information-id-7307517.htm http://www.hao360.cn/information-id-7307514.htm http://www.hao360.cn/information-id-7307510.htm http://www.hao360.cn/information-id-7307507.htm http://www.hao360.cn/information-id-7307505.htm http://www.hao360.cn/information-id-7307488.htm http://www.hao360.cn/information-id-7307483.htm http://www.hao360.cn/information-id-7307478.htm http://www.hao360.cn/information-id-7307475.htm http://www.hao360.cn/information-id-7307470.htm http://www.hao360.cn/information-id-7307467.htm http://www.hao360.cn/information-id-7307461.htm http://www.hao360.cn/information-id-7307458.htm http://www.hao360.cn/information-id-7307454.htm http://www.hao360.cn/information-id-7307439.htm http://www.hao360.cn/information-id-7307435.htm http://www.hao360.cn/information-id-7307430.htm http://www.hao360.cn/information-id-7307421.htm http://www.hao360.cn/information-id-7307410.htm http://www.hao360.cn/information-id-7307402.htm http://www.hao360.cn/information-id-7307397.htm http://www.hao360.cn/information-id-7307392.htm http://www.hao360.cn/information-id-7307376.htm http://www.hao360.cn/information-id-7307370.htm http://www.hao360.cn/information-id-7307366.htm http://www.hao360.cn/information-id-7307362.htm http://www.hao360.cn/information-id-7307359.htm http://www.hao360.cn/information-id-7307354.htm http://www.hao360.cn/information-id-7307349.htm http://www.hao360.cn/information-id-7307336.htm http://www.hao360.cn/information-id-7307333.htm http://www.hao360.cn/information-id-7307327.htm http://www.hao360.cn/information-id-7307324.htm http://www.hao360.cn/information-id-7307318.htm http://www.hao360.cn/information-id-7307312.htm http://www.hao360.cn/information-id-7239418.htm http://www.hao360.cn/information-id-7239413.htm http://www.hao360.cn/information-id-7239406.htm http://www.hao360.cn/information-id-7239400.htm http://www.hao360.cn/information-id-7239394.htm http://www.hao360.cn/information-id-7239385.htm http://www.hao360.cn/information-id-7239378.htm http://www.hao360.cn/information-id-7239362.htm http://www.hao360.cn/information-id-7239356.htm http://www.hao360.cn/information-id-7239353.htm http://www.hao360.cn/information-id-7239336.htm http://www.hao360.cn/information-id-7239331.htm http://www.hao360.cn/information-id-7239325.htm http://www.hao360.cn/information-id-7239321.htm http://www.hao360.cn/information-id-7239314.htm http://www.hao360.cn/information-id-7239311.htmprint("This is the $myVar section of the code\n"); 
?> 
EOF 
可以看出两次的代码唯一的不同就是第二次使用了一个变量“$myVar”,试试运行,PHP竟然给出出错的信息:“Parse error: parse error in - on line 2”!这是因为Bash中的变量也是“$myVar”,而Bash解析器先将变量给替换掉了,要想解决这个问题,你需要在每个PHP的变量前面加上“\” 转义符,那么刚才的代码修改如下: 
#!/bin/bash 
echo This is the Bash section of the code. 
/usr/local/bin/php -q << EOF 
\$myVar = 'PHP'; 
print("This is the \$myVar section of the code\n"); 
?> 
EOF 
好了,现在你可以用PHP编写你自己的Shell脚本了,希望你一切顺利。