当前位置: 首页>>代码示例>>PHP>>正文


PHP ADOdb_Active_Record::Load方法代码示例

本文整理汇总了PHP中ADOdb_Active_Record::Load方法的典型用法代码示例。如果您正苦于以下问题:PHP ADOdb_Active_Record::Load方法的具体用法?PHP ADOdb_Active_Record::Load怎么用?PHP ADOdb_Active_Record::Load使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ADOdb_Active_Record的用法示例。


在下文中一共展示了ADOdb_Active_Record::Load方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Load

 public function Load($where = null, $bindarr = false, $lock = false)
 {
     if (is_numeric($where)) {
         $where = $this->_prefix . "id = " . $where;
     }
     $ret = parent::Load($where, $bindarr, $lock);
     if ($ret && $this->has_meta()) {
         $this->load_meta($this);
     }
     return $ret;
 }
开发者ID:benvanstaveren,项目名称:movabletype,代码行数:11,代码来源:class.baseobject.php

示例2: editarRegistro

 public function editarRegistro()
 {
     $this->usarScaffold();
     //Conectarse a la base de datos
     if ($this->db == "") {
         $this->db = "default";
     }
     $conexion = $this->nucleo->getConexion($this->db);
     $conexion->Execute("SET NAMES utf8");
     //Primarias en $primarias
     //Demas campos en $campos
     $campos = $this->getCampos();
     $registro = new ADOdb_Active_Record($this->modelo);
     $where = "";
     foreach ($campos as $c) {
         if ($c["primaria"] == 1) {
             if ($where != "") {
                 $where .= " AND ";
             }
             $where .= $c["nombre"] . "=" . $this->par['pri_' . $c["nombre"]];
         }
     }
     $registro->Load($where);
     foreach ($campos as $c) {
         if ($c["auto"] == 1) {
         } elseif ($c["nombre"] == "password" || $c["nombre"] == "contrasena") {
             if ($this->par[$c["nombre"]] != "") {
                 $registro->{$c}["nombre"] = md5($this->par[$c["nombre"]]);
             }
         } elseif ($c["nombre"] == "texto") {
             $registro->{$c}["nombre"] = stripslashes($this->par[$c["nombre"]]);
         } else {
             $registro->{$c}["nombre"] = $this->par[$c["nombre"]];
         }
     }
     if ($registro->Save()) {
         $this->set("editado", "1");
         $this->listado();
         $this->set("vista", "listado");
     } else {
         $this->set("editado", "0");
         $this->agregar();
         $this->set("vista", "agregar");
     }
 }
开发者ID:axelavargas,项目名称:UFPS-CMS,代码行数:45,代码来源:libscaffold.class.php


注:本文中的ADOdb_Active_Record::Load方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。