Using PHP code in Smarty tpl FIle

余生颓废 提交于 2019-12-17 12:48:29

问题


I am new to smarty and I want to use php code in template file i-e tpl file. I have seen the documentation and searched on google but could not find how to use php code they say we need to configure smarty to allow php execution but could not find how to do it.

Kindly help me in this regard. Thanks


回答1:


Easy as boiling an egg!

{php}echo "hello!"{/php}

Second link down, for reference.

Edit as of Smarty 3.1:

As of Smarty 3.1 the {php} tags are only available from SmartyBC.

Source: http://www.smarty.net/docs/en/language.function.php.tpl




回答2:


Find the file smarty.class.php in your host directory

Go to smarty.class.php

Edit var $php_handling = SMARTY_PHP_ALLOW;

Save the file in server.

Now you may add php in tpl file as <?php ....code.... ?>




回答3:


You may have seen the documentation, but you have missed {php}:

The {php} tags allow PHP code to be embedded directly into the template. They will not be escaped, regardless of the $php_handling setting. This is for advanced users only, not normally needed and not recommended.

Emphasis mine, source: http://www.smarty.net/docsv2/en/language.function.php.tpl

Note that putting PHP in template code is the easiest way to shoot yourself in the foot - the main purpose of Smarty is to separate PHP code and HTML templates. In other words, the mere fact of using this tag is a serious red flag; in most cases, it is possible to fix the underlying issue, and avoid PHP inside the template altogether.




回答4:


Have you tried to enable error reporting?

error_reporting(E_ALL);
ini_set("display_errors", true);


来源:https://stackoverflow.com/questions/7446851/using-php-code-in-smarty-tpl-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!