PHP 观察者模式/魔法设置者/代理

发布于 2024-10-16 12:07:32 字数 341 浏览 1 评论 0原文

我正在寻找一种方法来监视类中的变量何时被设置。

例如,如果我有以下类:

class MyClass  {
    public $myVariable;
} 

在我的代码中的某个地方我这样做:

$class = new MyClass();
$class->myVariable = "value";

我希望能够“挂钩”到 myVariable 的设置器中。所以当我调用 $class->myVariable = "Value"; 时将启动一个过滤器来检查新值是否等于“Value”,如果是,则抛出异常。

I'm looking for a way to monitor when a variable in my class gets set.

For example if I have the following class:

class MyClass  {
    public $myVariable;
} 

And somewhere in my code I do:

$class = new MyClass();
$class->myVariable = "value";

I would like to be able to "hook" into the setter of myVariable. So when I call $class->myVariable = "Value"; a filter would start that checks if the new value equals "Value" and if so, throws an Exception.

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

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

发布评论

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

评论(1

幸福丶如此 2024-10-23 12:07:32

像往常一样将您的属性定义为私有或受保护。

然后使用魔术方法 __set()< /a> 捕获访问。

最好的问候

拉斐尔

define your attribute as private or protected, as usual.

Then use the magic method __set() to catch the access.

Best regards

Raffael

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