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


PHP fs_model::errors方法代码示例

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


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

示例1: clean_errors

 public function clean_errors()
 {
     self::$errors = array();
 }
开发者ID:ramikat,项目名称:ERPSISFS,代码行数:4,代码来源:fs_model.php

示例2: __construct

 /**
  * 
  * @param type $name nombre de la tabla de la base de datos.
  * @param type $basedir ruta del directorio table donde se encuentra el XML
  * con la estructura de la tabla de la base de datos.
  */
 public function __construct($name = '', $basedir = '')
 {
     if (strtolower(FS_DB_TYPE) == 'mysql') {
         $this->db = new fs_mysql();
     } else {
         $this->db = new fs_postgresql();
     }
     $this->table_name = $name;
     $this->base_dir = $basedir;
     $this->cache = new fs_cache();
     $this->default_items = new fs_default_items();
     if (!self::$errors) {
         self::$errors = array();
     }
     if (!self::$checked_tables) {
         self::$checked_tables = $this->cache->get_array('fs_checked_tables', TRUE);
         if (self::$checked_tables) {
             /// nos aseguramos de que existan todas las tablas que se suponen comprobadas
             $tables = $this->db->list_tables();
             foreach (self::$checked_tables as $ct) {
                 if (!$this->db->table_exists($ct, $tables)) {
                     $this->clean_checked_tables();
                     break;
                 }
             }
         }
     }
     if ($name != '') {
         if (!in_array($name, self::$checked_tables)) {
             if ($this->check_table($name)) {
                 self::$checked_tables[] = $name;
                 $this->cache->set('fs_checked_tables', self::$checked_tables, 5400, TRUE);
             }
         }
     }
 }
开发者ID:BGCX067,项目名称:facturascripts-svn-to-git,代码行数:42,代码来源:fs_model.php


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