开发者

How can I access a variable defined in the parent template in PHP smarty?

开发者 https://www.devze.com 2023-01-30 08:44 出处:网络
I have a main template which includes a lot of others. How can I access a variable defined in the parent template from the included ones 开发者_运维问答in PHP smarty?You can pass parameter to children

I have a main template which includes a lot of others. How can I access a variable defined in the parent template from the included ones 开发者_运维问答in PHP smarty?


You can pass parameter to children template when you include them.

Example :

{include file='children.tpl' somevar=$somevar}

In your children template, somevar will now be accessible.

0

精彩评论

暂无评论...
验证码 换一张
取 消