gpt4 book ai didi

php - 如何将参数从 bash 传递到 php 脚本?

转载 作者:IT王子 更新时间:2023-10-28 23:49:45 26 4
gpt4 key购买 nike

我已经完成了一个运行 php 脚本的 bash 脚本。没有参数也能正常工作,但是当我添加参数(id 和 url)时,会出现一些错误:

PHP Deprecated:  Comments starting with '#' are deprecated in /etc/php5/cli/conf                                                                                        .d/mcrypt.ini on line 1 in Unknown on line 0
Could not open input file: /var/www/dev/dbinsert/script/automatisation.php? id=1

我像这样从 bash 运行 php 脚本:

php /var/www/dev/dbinsert/script/automatisation.php?id=19&url=http://bkjbezjnkelnkz.com

最佳答案

称它为:

php /path/to/script/script.php -- 'id=19&url=http://bkjbezjnkelnkz.com'

另外,修改您的 PHP 脚本以使用 parse_str() :

parse_str($argv[1]);

如果索引 $_SERVER['REMOTE_ADDR'] 未设置。


可能需要更高级的处理getopt() , 但是 parse_str()是让它工作的快速'n'dirty方式。

关于php - 如何将参数从 bash 传递到 php 脚本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6779576/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com