我的问题是我应该如何将 php 类对象插入数据库?如果我有
猫.php
class Cat{
private $name;
public function setName($name){
$this->name = $name
}
public function database(){
....$this->name;
//Insert stuff into db
}
}
一些文件.php
if($_POST['catname']){
//This way?
$obj1 = new Cat();
$obj1->setName($_POST['catname']);
$obj1->database();
//Or this way
//Insert Cat directly into the db without creating an object of Cat
}
我想把这只猫插入数据库。最好在 cat 中创建一个获取 $this->name 的函数,还是在创建对象之前将其插入数据库?