功能无法正常运行? (坦克验证)

发布于 2024-11-08 18:42:42 字数 834 浏览 2 评论 0原文

之间存在差异

function foo($a){$blah = $a}.......
foo($CONSTANT); 

有人可以解释一下为什么和

function foo() { $blah = $CONSTANT}.......
foo();

顶级方法对我有用,而另一种则不然。 具体来说,下面的语句发现 if 语句为假:

$this->setsession($user->id,$user->email, ($user->activated == 1) ? STATUS_ACTIVATED : STATUS_NOT_ACTIVATED);

                        if ($user->activated == 0) {                            // fail - not activated
                            $this->error = array('not_activated' => '');

而这个语句发现它为 true:

$this->setsession();

                        if ($user->activated == 0) {                            // fail - not activated
                            $this->error = array('not_activated' => '');

Could someone please explain why there is a difference between

function foo($a){$blah = $a}.......
foo($CONSTANT); 

and

function foo() { $blah = $CONSTANT}.......
foo();

The top method is working for me, the other is not.
Specifically the below finds the if statement false:

$this->setsession($user->id,$user->email, ($user->activated == 1) ? STATUS_ACTIVATED : STATUS_NOT_ACTIVATED);

                        if ($user->activated == 0) {                            // fail - not activated
                            $this->error = array('not_activated' => '');

While this one finds it true:

$this->setsession();

                        if ($user->activated == 0) {                            // fail - not activated
                            $this->error = array('not_activated' => '');

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

早乙女 2024-11-15 18:42:42

抱歉,问题写得不好。
区别在于变量作用域,我需要传递变量,因为我调用的变量无法被引用。

Sorry for a poorly written question.
The difference is variable scope, I need to pass the variables because the ones I was calling were not able to be referenced.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文