Home > Backend Development > PHP Tutorial > PHP BAT 制作PHP自解析批处理_PHP

PHP BAT 制作PHP自解析批处理_PHP

WBOY
Release: 2016-06-01 12:31:52
Original
871 people have browsed it

  关于标题:PHP BAT 制作PHP自解析批处理

  就是,一个BAT文件,内部包含了DOS的BAT批处理代码和PHP的CLI的代码。因为后缀名为BAT,所以在WIndows系统上面,我点他,他就可以自动运行。

  因为我做了一些对PHP的特殊处理,因而它又能自己使用PHP的CLI来解析自己所包含的PHP指令。

  有何用途:

  例如你要做一个PHP-CLI的发行包,那么你可以参照这个脚本来做你自己的安装程序。

代码原文:
filename: phpbat.bat
代码:

@REM@REM =='
@SET PHPCLI=F:\usr\local\php4\php.exe
@REM PHPCLI表示你的CLI模式的php.exe的路径
@%PHPCLI% %0
@goto :EOF
@REM';?>
echo "\rHello World";
exec("pause");
?>

  一点说明,巧妙的运用了BAT批处理的REM指令和PHP的''定义字符串的方式,使得二者混合一体,而又互补干扰。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template