我怎樣才能得到模板與extend
:嫩枝,得到源
//first.html.twig
<div>
{% block test %}
{% endblock %}
</div>
而且second.html.twig
:
{% extend "first.html.twig" %}
{% block test %}
{% if test = 'foo' %}
{{ test }}
{% endif %}
{% endblock %}
在php文件:
<?php
$load = ???('second.html.twig');
$source = $load->getSource();
//$source:
//<div>
// {% if test = 'foo' %}
// {{ test }}
// {% endif %}
//</div>
我想你應該解釋的背景下,發展你的問題。你真的在找什麼? – AnthonyB
@AnthonyB我想發送樹枝在其他服務器解析,並希望用json發送一些源代碼,並得到回報的HTML。 – Iwan
我現在明白了,謝謝。路徑是否正確?在Twig引擎中,可以設置一個模板目錄,在這個文件夾中是first.html.twig? – AnthonyB