自定义 PHP 解释器?

发布于 2024-10-22 17:56:06 字数 1436 浏览 4 评论 0原文

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

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

发布评论

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

评论(1

稀香 2024-10-29 17:56:06

如果有的话,这是一个非常有趣的学习项目。

还有其他人对其他语言也有同样的想法。例如,看一下 CoffeeScript,它基本上是相同的想法,但针对的是 Javascript。

您可以做到这一点,但您必须考虑转换过程。如果您正在寻求性能,您不希望针对每个请求实时完成此操作。因为增加复杂性只会减慢代码速度。哪怕只是最微小的一点。为了弥补这一点,CoffeeScript 提供了一个用于预编译的命令行“编译器”,但也允许延迟加载情况 - 这非常适合开发目的。这样的设置可能也适合您。

您需要查看 PHP_LexerGeneratorPHP_ParserGenerator 用于实现您的解析器。即使后者不再维护:)

祝你好运! ;)

If anything, this is a very fun learning project.

There are others that had the same idea with other languages. For instance, take a look at CoffeeScript, which is basically the same idea but for Javascript.

You can make this work, but you'll have to take into consideration the conversion process. If you're looking for performance you do not want this to be done realtime on each request. Because adding layers of complexity will simply slow down your code. Even if it's just by the tiniest bit. To rememdy this CoffeeScript offers a command line 'compiler' for pre-compilation but also allows for a lazy loading situation - which works nicely for development purposes. Such a setup might work for you aswell.

You'll want to look at PHP_LexerGenerator and PHP_ParserGenerator for implementing your parser. Even if the latter is no longer maintained :)

Good luck! ;)

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