linux中直接用"php"命令来执行php文件 一般在linux命令行下运行php文件的代码: XML/HTML代码 linux下执行:#php安装路径 -f php文件路径 例如:/opt/modules/php/bin/php -f /opt/data/www/yoururl/index.php 每次输入php安装路径比较麻烦,其实我们可以不用输入的哦! 将/opt/modules/php/bin/php 这个文件复制到/usr/sbin下,php将被安装为linux命令 在linux下执行以下命令 XML/HTML代码 cp /opt/modules/php/bin/php /usr/sbin 这样就可以直接在命令行中用 XML/HTML代码 php -f /opt/data/www/yoururl/index.php 执行php程序了,省去输入路径的过程
时间: 2024-10-25 01:58:40