此功能可以在本CMS中调用其他任意网站或任意数据的内容,方法如下:
1、打开文件/config/database.php配置外部数据源的数据库信息。
$db['dbsource1'] = array( 'dsn' => '', 'hostname' => 'localhost', 'username' => 'root', 'password' => 'root', 'port' => '3306', 'database' => 'database_name', 'dbdriver' => 'mysqli', 'dbprefix' => 'dr_', 'pconnect' => FALSE, 'db_debug' => TRUE, 'cache_on' => FALSE, 'cachedir' => 'cache/sql/', 'char_set' => 'utf8', 'dbcollat' => 'utf8_general_ci', 'swap_pre' => '', 'autoinit' => FALSE, 'encrypt' => FALSE, 'compress' => FALSE, 'stricton' => FALSE, 'failover' => array(), );
2、使用list标签调用
{list action=sql db=dbsource1 sql='select * from aaa'} ......... {/list}
以上标签就是调用外部数据的语法
文档最后更新时间:2017-09-28 10:54:57