gpt4 book ai didi

php - Shell 运行/执行带参数的 php 脚本

转载 作者:IT王子 更新时间:2023-10-29 01:02:19 28 4
gpt4 key购买 nike

我需要通过shell执行带参数的php文件。

下面是我将如何运行 php 文件:

php -q htdocs/file.php

我需要传递参数 'show'

php -q htdocs/file.php?show=show_name

没用

如果有人能告诉我执行什么命令来让 php 文件以设置的参数执行,将不胜感激。如果没有,请尝试引导我正确的方向。

最佳答案

测试.php:

<?php
print_r($argv);
?>

shell :

$ php -q test.php foo bar
Array
(
[0] => test.php
[1] => foo
[2] => bar
)

关于php - Shell 运行/执行带参数的 php 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6763997/

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