小编典典

在Linux bash中运行php脚本(php函数)

linux

我们如何使用linux bash运行php脚本?

php文件test.php

test.php包含。

<?php echo "hello\n" ?>

阅读 873

收藏
2020-06-07

共1个答案

小编典典

在命令行中输入以下内容:

php -f filename.php

确保filename.php既包含并执行您要测试的功能。您回显的所有内容都会显示在控制台中,包括错误。

请注意,Apache PHP的php.ini通常不同于CLI PHP(命令行界面)。

参考:https :
//secure.php.net/manual/en/features.commandline.usage.php

2020-06-07