6.8 使用PHP语法

优质
小牛编辑
140浏览
2023-12-01

GF模板引擎中支持使用原生php语句,感兴趣的同学可以尝试一下:

<div>

<?php

for ($i=1; $i<=10; $i++) {

echo $i.'<br />';

}

?>

</div>