Heim >Backend-Entwicklung >PHP-Tutorial >关于smarty插件

关于smarty插件

WBOY
WBOYOriginal
2016-06-23 14:14:01813Durchsuche

smarty 插件

大家上午好哈

本人最近再看smarty模版在弄自定义插件的时候一到一个问题

插件函数
function.a.php

function smarty_function_a($dat,$smarty){

     //我想请问的是在这里如何引入我的数据库类db.class.php 类在根目录下的include下
       //同时数据库类 中引入conn.php,config.php在同一目录下
       //同时conn.php引入config.php

}
?>

回复讨论(解决方案)

版本不同,做法也不同
但文件名应与函数名同名,这是一样的

大家上午好哈

本人最近再看smarty模版在弄自定义插件的时候一到一个问题

插件函数
function.a.php

function smarty_function_a($dat,$smarty){

     //我想请问的是在这里如何引入我的数据库类db.class.php 类在根目录下的include下
       //同时数据库类 中引入conn.php,config.php在同一目录下
       //同时conn.php引入config.php

}
?>

里面不需要引入db.class.php这些吧
你再使用插件的时候不是已经是在他的基础之上使用了么?
那你只要在你的函数里global $db;这样引用他已经实例化的对象就可以使用他们里面的函数了啊

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn