php反射插入对象的解决办法
内容摘要
这篇文章主要为大家详细介绍了php反射插入对象的简单示例,具有一定的参考价值,可以用来参考一下。
文章正文
这篇文章主要为大家详细介绍了php反射插入对象的简单示例,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随php教程来看看吧!
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | <code> /** * 插入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__ )). '\Models\BaseModel.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(); } } </code> |
注:关于php反射插入对象的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释