reCaptcha 脚本中的“is_valid”是什么?文本?它是一个数组键吗?
在 reCaptcha 脚本中,您会找到这段代码:
$recaptcha_response->is_valid = false;
我想知道 ->
的作用/含义是什么。 这是将键(带有值)分配给字符串的另一种方法吗?
In the reCaptcha script you'll find this piece of code:
$recaptcha_response->is_valid = false;
I wonder what the ->
does/means.
Is it an alternative way to assign an key (with a value) to a string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
$recaptcha_response
是对象的实例。is_valid
是对象的公共属性。$recaptcha_response->$recaptcha_response-> = false 在属性
is_valid
处分配布尔值 (false)。稍后你可以像这样使用它
if ($recaptcha_response->is_valid)
//做某事$recaptcha_response
is an instance of a object.is_valid
is a public property of the object.$recaptcha_response-> = false
assign a boolean values (false) at the propertyis_valid
.Later you can use it like
if ($recaptcha_response->is_valid)
//Do something这实际上是 php 的对象表示法,您应该看到在脚本中其他位置声明的对象
$recaptcha_response
。它正在调用该对象/类的 is_valid 方法。That's actually php's object notation, you should see the object
$recaptcha_response
declared somewhere else in the script. It is calling theis_valid
method of that object/class.