0

我正在编写一个 php 脚本来将一些数据导入到我的自定义模块中,基本上我会定期运行一个 cron 作业以从另一个表中复制一些数据来填充我的自定义模块字段。

谢谢。

4

1 回答 1

3

使用PearDatabase.php类获取与数据库操作相关的数据库访问和功能。

例子:

<?php
include_once 'include/database/PearDatabase.php';
$db = PearDatabase::getInstance();
$result = $db->pquery("SHOW TABLES LIKE 'leads'", array());
echo $db->num_rows($result);
print_r($result);
echo "<br>Test Done <br>";


//Using $db object you can access other DB related methods defined in that class.
//Include the file in your module in any file where you want DB operation.
// But I would recommend, use inside your main module class or model controller class.
?>

将此 PHP 脚本放入您的根目录并使用您的浏览器直接运行此文件。因此,您会有所了解,并且可以在模块内部使用,因为所有模块都是从 index.php 文件(根目录)加载的。

于 2017-07-12T17:18:09.210 回答