多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# `last` New in version 1.12.2: The `last` filter was added in Twig 1.12.2. The `last` filter returns the last "element" of a sequence, a mapping, ora string: <table class="highlighttable"><tr><td class="linenos"><div class="linenodiv"><pre>1 2 3 4 5 6 7 8</pre></div></td><td class="code"><div class="highlight"><pre>{{ [1, 2, 3, 4]|last }} {# outputs 4 #} {{ { a: 1, b: 2, c: 3, d: 4 }|last }} {# outputs 4 #} {{ '1234'|last }} {# outputs 4 #} </pre></div></td></tr></table> Note It also works with objects implementing the [Traversable](http://php.net/manual/en/class.traversable.php) [http://php.net/manual/en/class.traversable.php] interface.