首页 > php教程 > PHP源码 > 在php中使用反射插入对象

在php中使用反射插入对象

PHP中文网
发布: 2016-05-25 16:59:48
原创
1200 人浏览过

在php中使用反射插入对象

/**
 * 插入insertModel(),利用反射,效率稍差 
 * @param class $model 对象
 * @param bool $is_returnLastInsertId 是否返回添加ID 
 * @return int 默认返回成功与否,$is_returnLastInsertId 为true,返回添加ID 
*/
 public function insertModel($model,$is_returnLastInsertId=FALSE) {
 try {
 require_once dirname(dirname(__FILE__)).'ModelsBaseModel.php';
 if(!is_subclass_of($model,"BaseModel")){
 exit($this->getError(__FUNCTION__, __LINE__));
}
$className=get_class($model);
 $tName = $this->formatTabName($className);
 $reflectionClass=new ReflectionClass($className);
$properties=$reflectionClass->getProperties();
unset($properties[0]);
$fields="";
$vals="";
 foreach ($properties as $property) {
$pName=$property->getName();
$fields.=$pName.",";
$vals.='''.$model->$pName.'''.',';
}
$fields=rtrim($fields,',');
$vals=rtrim($vals,',');
 $this->sql ="insert into {$tName} ({$fields}) values ({$vals})";
if($is_returnLastInsertId){
$this->conn->exec($this->sql);
 $lastId = (int)$this->conn->lastInsertId();

 return $lastId;
 } else {
 $row = $this->conn->exec($this->sql);

 return $row;
}
 } catch (Exception $exc) {
 echo $exc->getMessage();
}
}
登录后复制

                       


相关标签:
php
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板