本文整理汇总了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();
}
示例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);
}
}
}
}