热门 php修改include_path
使用模板和框架时,一劳永逸的方法是把它们加入include_path。以smarty为例,到网上下载模板包,解压后将libs下面的所有文件移动到新建文件夹smarty里面。然后移动到一个自己喜欢的php共享路径,例如/usr/share/php。最后到php配置目录例如/etc/php5/conf.d下面新建一个smarty.ini内容为:[smarty] include_path=${include_path} ":/usr/share/php/smarty"修改后保存。可以看到此时/usr/share/php/smarty下的目录结构为:smarty ├─...