💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# `sandbox` The `sandbox` tag can be used to enable the sandboxing mode for an includedtemplate, when sandboxing is not enabled globally for the Twig environment: <table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre>1 2 3</pre></div></td><td class="code"><div class="highlight"><pre>{% sandbox %} {% include 'user.html' %} {% endsandbox %} </pre></div></td></tr></table> Warning The `sandbox` tag is only available when the sandbox extension isenabled (see the [*Twig for Developers*](#) chapter). Note The `sandbox` tag can only be used to sandbox an include tag and itcannot be used to sandbox a section of a template. The following examplewon't work: <table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre>1 2 3 4 5</pre></div></td><td class="code"><div class="highlight"><pre>{% sandbox %} {% for i in 1..2 %} {{ i }} {% endfor %} {% endsandbox %} </pre></div></td></tr></table>