gpt4 book ai didi

PHP搞定?无需将变量设置为任何内容

转载 作者:行者123 更新时间:2023-12-02 07:06:49 25 4
gpt4 key购买 nike

如果我要打电话:

www.*.com?你好

if($_GET["hello"]){
}

它总是会返回 false 因为 ?hello 变量需要设置为某物...

有没有办法得到?部分没有事先将变量设置为任何东西?

最佳答案

您可以检查变量是否设置如下:

if(isset($_GET["hello"])){

}

有时 key_exists() 更好,因为如果 $_GET["hello"] == null 你可以得到 false

if (key_exists("hello", $_GET)) {

}

关于PHP搞定?无需将变量设置为任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10701377/

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