PHP-获取对象父级
我有一个这样调用的函数:
foo($object->ID);
并且在该函数中,如果 $object->ID
作为变量传递,我需要以某种方式选择 $object
。
function foo($id = NULL){
if($id != NULL) ... // here I want to get $object
else ...
}
我该怎么做?
I have a function that is called like this:
foo($object->ID);
and in the function I need to somehow select $object
if $object->ID
is passed as a variable.
function foo($id = NULL){
if($id != NULL) ... // here I want to get $object
else ...
}
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果我正确理解您的要求,为什么不直接通过 ref 传递对象本身呢?
我的 PHP 相当生疏,但我相当确定这就是你传递引用的方式......
If I understand what you're asking correctly, why not just pass the object itself by ref?
My PHP's pretty rusty, but I'm fairly sure that's how you pass by ref...
那是不可能的。您正在传递一个号码,但没有任何有关其来源的信息。这样做
That is not possible. You are passing a number without any information about its origin. Do this
为什么不:
和
why not:
and
您需要将对象作为参数而不是 ID 传递。
You need to pass the object in as an argument instead of the ID.