企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
## 变量输出 [TOC] 输出变量: ~~~ {$content}会编译为<?php echo $content; ?> ~~~ ### js变量写法 ~~~ {$content.b.c}编译为<?php echo $content['b']['c']; ?> ~~~ ### 原样输出 例如:有时候不希望引擎解析该变量 ~~~ @{$content.b.c}编译为 {$content.b.c} ~~~ ### 变量调节器 ~~~ {$content|trim|substr=0,3} 编译结果: <?php echo substr(trim($content), 0, 3); ?> ~~~ 如果不想解析`|`可以使用`\|` 例如 ~~~ {$content|trim\|substr=0,3} 这样substr是不会解析的 ~~~