闭包如何帮助创建 DSL/Fluent 界面:PHP 示例?

发布于 2024-09-02 08:35:39 字数 238 浏览 5 评论 0原文

你能给我一个 PHP 中的例子,展示闭包如何有助于创建 DSL(流畅的界面)吗?

编辑: 以下问题中接受的答案讲述了嵌套闭包。如果有人可以将该示例翻译为 PHP,那也会很有帮助: 拥有流畅界面的经验吗?我需要你的意见!

Can you give me an example, in PHP, that shows how closures are helpful in creating a DSL (fluent interface)?

edit:
The accepted answer in the following question tells about nested closures. If someone could translate that example to PHP that would be helpful too:
Experience with fluent interfaces? I need your opinion!

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

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

发布评论

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

评论(1

荒芜了季节 2024-09-09 08:35:39

这是我能想到的第一个例子,它不是很好,但它给了你一个想法:

$db = new Database();
$filteredList = $db->select()
           ->from('my_table')
           ->where('id', 9)
           ->run()
           ->filter(function($record){
            // apply some php code to filter records
        });

在那里我将使用流畅的接口使用一些 ORM 来查询我的数据库,然后对我得到的记录集应用一些过滤器。想象一下 run() 方法返回一个 RecordSet 对象,该对象有一个 filter() 方法,可能如下所示:

public function filter ($callback)
{
    return array_filter($this->recordSet, $callback);
}

你明白了吗?

This is the first example I could think of, it's not great but it gives you an idea:

$db = new Database();
$filteredList = $db->select()
           ->from('my_table')
           ->where('id', 9)
           ->run()
           ->filter(function($record){
            // apply some php code to filter records
        });

There I'd be using fluent interfaces to query my database using some ORM and then applying some filter to the recordset I get. Imagine the run() method returns a RecordSet object which has a filter() method that could be something like this:

public function filter ($callback)
{
    return array_filter($this->recordSet, $callback);
}

Do you get the idea?

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