AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# Abstract class **Phalcon\Mvc\Model\Query\Lang**[](# "永久链接至标题") PHQL is implemented as a parser (written in C) that translates syntax in that of the target RDBMS. It allows Phalcon to offer a unified SQL language to the developer, while internally doing all the work of translating PHQL instructions to the most optimal SQL instructions depending on the RDBMS type associated with a model. To achieve the highest performance possible, we wrote a parser that uses the same technology as SQLite. This technology provides a small in-memory parser with a very low memory footprint that is also thread-safe. ~~~ <?php $intermediate = Phalcon\Mvc\Model\Query\Lang::parsePHQL("SELECT r.* FROM Robots r LIMIT 10"); ~~~ ### Methods[](# "永久链接至标题") public static *string***parsePHQL** (*string* $phql) Parses a PHQL statement returning an intermediate representation (IR) | - [索引](# "总目录") - [下一页](# "Class Phalcon\Mvc\Model\Query\Status") | - [上一页](# "Class Phalcon\Mvc\Model\Query\Builder") | - [API Indice](#) »