您可以使用您提到的两个函数创建您的 database.php 文件:function update()
和function insert()
.
然后使用 phpinclude
将 database.php 文件包含到其他两个文件中,如下所示:
插入.php
include_once('database.php');
insert(your data comes here);
修改.php
include_once('database.php');
update(your data comes here);
您应该在拥有模型的地方创建一个数据库层,并为此使用该类的实例。然后,您将 database.php 包含到您的其他脚本中并实例化您的 db 对象并调用您的方法。像这样的东西:
数据库.php
class MyDatabaseThingy
{
/* rest of your code */
public function update(data) {your code here}
public function insert(data) {your code here}
/* rest of your code */
}
插入.php
include_once(database.php);
$dbObj = new MyDatabaseThingy();
/* make sure you have the connection and so on */
$dbObj->insert(your data);
修改.php
include_once(database.php);
$dbObj = new MyDatabaseThingy();
/* make sure you have the connection and so on */
$dbObj->update(your data);