闭包如何帮助创建 DSL/Fluent 界面:PHP 示例?
你能给我一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我能想到的第一个例子,它不是很好,但它给了你一个想法:
在那里我将使用流畅的接口使用一些 ORM 来查询我的数据库,然后对我得到的记录集应用一些过滤器。想象一下
run()
方法返回一个 RecordSet 对象,该对象有一个filter()
方法,可能如下所示:你明白了吗?
This is the first example I could think of, it's not great but it gives you an idea:
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 afilter()
method that could be something like this:Do you get the idea?