在另一个函数中使用 php 的魔法函数不起作用

发布于 2024-08-28 15:11:34 字数 518 浏览 6 评论 0原文

我想使用魔术函数 __set()__get() 在 php5 类中存储 SQL 数据,在函数中使用它们时出现一些奇怪的

if (!isset($this->sPrimaryKey) || !isset($this->sTable))
 return false;
$id = $this->{$this->sPrimaryKey};
if (empty($id))
 return false;
echo 'yaay!';

问题 不工作:

if (!isset($this->sPrimaryKey) || !isset($this->sTable))
    return false;
if (empty($this->{$this->sPrimaryKey}))
   return false;
echo 'yaay!';

这会是一个 php 错误吗?

I want to use magic function __set() and __get() for storing SQL data inside a php5 class and I get some strange issue using them inside a function:

Works:

if (!isset($this->sPrimaryKey) || !isset($this->sTable))
 return false;
$id = $this->{$this->sPrimaryKey};
if (empty($id))
 return false;
echo 'yaay!';

Does not work:

if (!isset($this->sPrimaryKey) || !isset($this->sTable))
    return false;
if (empty($this->{$this->sPrimaryKey}))
   return false;
echo 'yaay!';

would this be a php bug?

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

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

发布评论

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

评论(1

锦爱 2024-09-04 15:11:34

empty() 首先*调用 __isset() 方法,并且仅当它返回 true 时才调用 __get() 方法。即你的类也必须实现 __isset() 。

<?php
class Foo {

  public function __isset($name) {
    echo "Foo:__isset($name) invoked\n";

    return 'bar'===$name;
  }

  public function __get($name) {
    echo "Foo:__get($name) invoked\n";
    return 'lalala';
  }
}

$foo = new Foo;
var_dump(empty($foo->dummy));
var_dump(empty($foo->bar));

打印* edit: 。

Foo:__isset(dummy) invoked
bool(true)
Foo:__isset(bar) invoked
Foo:__get(bar) invoked
bool(false)

例如,如果无法“直接”在对象的属性哈希表中找到可访问的属性,

empty() first* calls the __isset() method and only if it returns true the __get() method. i.e. your class has to implement __isset() as well.

E.g.

<?php
class Foo {

  public function __isset($name) {
    echo "Foo:__isset($name) invoked\n";

    return 'bar'===$name;
  }

  public function __get($name) {
    echo "Foo:__get($name) invoked\n";
    return 'lalala';
  }
}

$foo = new Foo;
var_dump(empty($foo->dummy));
var_dump(empty($foo->bar));

prints

Foo:__isset(dummy) invoked
bool(true)
Foo:__isset(bar) invoked
Foo:__get(bar) invoked
bool(false)

* edit: if it can't "directly" find an accessible property in the object's property hashtable.

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