PHP Insert Object Sample using Reflection

Source: Internet
Author: User
Tags reflection rtrim

  This article mainly introduces PHP using reflection Insert Object example, need friends can refer to the following

  Code as follows:/**       * Insert Insertmodel (), use reflection, slightly less efficiency       * @param class $model object   &nbs P * @param bool $is _returnlastinsertid whether to return add id      * @return int succeeds or not by default, $is _returnlastinsertid is true, returns Tim Add id      */      Public Function Insertmodel ($model, $is _returnlastinsertid=false) {        try {            require_once dirname (dirname (__file__)). ' Modelsbasemodel.php ';             if (!is_subclass_of ($model, "Basemodel")) {          &NB Sp     Exit ($this->geterror (__function__, __line__));                         $className =get_class ($model);             $tName = $this->formattabname ($className);             $reflectionClass =new reflectionclass ($className);     &nbsp       $properties = $reflectionClass->getproperties ();             unset ($properties [0]);             $fields = "";             $vals = "";             foreach ($properties as $property) {            & nbsp   $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) {              &NB SP $this->conn->exec ($this->sql);                 $lastId = (int) $this->conn->lastinsertid ();                   return $lastId;             { else {                $row = $t His->conn->exec ($this->sql);                   return $row;             $EXC        } catch (Exception) {      &N Bsp     echo $exc->getmessage ();        }    }  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.