Need to change smarty file into zend file

前端 未结 1 592
面向向阳花
面向向阳花 2021-01-29 09:49

HI here i have smarty file and i need to convert into zend.. How can i change smarty to zend? its tpl file

&
相关标签:
1条回答
  • 2021-01-29 10:31

    You can replace the Smarty code with the HTML it generates....

    eg.

    {{input_text name="login" id="login_name" class="longfield" maxlength="100"}}
    

    becomes

    <input type="text" name="login" id="login_name" class="longfield" maxlength="100">
    

    But past that, this question doesn't really make a lot of sense.

    0 讨论(0)
提交回复
热议问题