What is .tpl files? php, web design

前端 未结 10 973
伪装坚强ぢ
伪装坚强ぢ 2020-11-29 02:39

A man wants me to redesign a site run in PHP (VideoCMS). But when I asked him to send me the source he has given me *.tpl files instead of *.php. There is some code inside t

相关标签:
10条回答
  • 2020-11-29 03:13

    Those look like Smarty templates. There should be some additional PHP scripts which actually instantiate the Smarty engine and give it the data it can use for the replaceable elements.

    0 讨论(0)
  • 2020-11-29 03:17

    Other possibilities for .tpl: HTML::SimpleTemplate, example:

    Hello $name
    

    , and Template Toolkit, example:

    Hello [% world %]!
    
    0 讨论(0)
  • 2020-11-29 03:18

    The files are using some sort of template engine in which curly braces indicate variables being generated by that templating engine, the files creating such variables must be present elsewhere with the more or less same name as the tpl file name. Here are some of templates engine mostly used.

    Smarty

    Savant

    Tinybutstrong

    etc

    With smarty being widely used.

    0 讨论(0)
  • 2020-11-29 03:25

    You have to learn Smarty syntax, that's a template system.

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