在Linux bash中运行php脚本(php函数)
我们如何使用linux bash运行php脚本?
php文件test.php
test.php包含。
<?php echo "hello\n" ?>
回答:
在命令行中输入以下内容:
php -f filename.php
确保filename.php既包含并执行您要测试的功能。您回显的所有内容都会显示在控制台中,包括错误。
请注意,Apache PHP的php.ini通常不同于CLI PHP(命令行界面)。
参考:https :
//secure.php.net/manual/en/features.commandline.usage.php
以上是 在Linux bash中运行php脚本(php函数) 的全部内容, 来源链接: utcz.com/qa/428749.html