usersnaps_data.php

来自「太烦了」· PHP 代码 · 共 119 行

PHP
119
字号
<?php   class userSnapsData extends Data {      var $table = USER_SNAP_TABLE;      var $config = array (  'table' => USER_SNAP_TABLE,  'idField' => 'id',  'addedMsg' => 'Osdate Usersnaps %s Added',  'added_err' => 'Can\\\'t Add Osdate Usersnaps',  'editMsg' => 'Osdate Usersnaps %s Updated',  'editErr' => 'Can\\\'t Update Osdate Usersnaps',  'delErr' => 'Can\\\'t Delete Osdate Usersnaps',  'delMsg' => 'Osdate Usersnaps %s Deleted',  'blankErr' => 'Osdate Usersnaps Empty',  'fields' =>   array (    'userid' =>     array (      'name' => 'userid',      'description' => 'Userid',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'picno' =>     array (      'name' => 'picno',      'description' => 'Picno',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'picture' =>     array (      'name' => 'picture',      'description' => 'Picture',      'type' => 'text',      'min_len' => 0,      'max_len' => 16777215,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'tnpicture' =>     array (      'name' => 'tnpicture',      'description' => 'Tnpicture',      'type' => 'text',      'min_len' => 0,      'max_len' => 65535,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'ins_time' =>     array (      'name' => 'ins_time',      'description' => 'Ins Time',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),    'active' =>     array (      'name' => 'active',      'description' => 'Active',      'type' => 'text',      'min_len' => 0,      'max_len' => 1,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'picext' =>     array (      'name' => 'picext',      'description' => 'Picext',      'type' => 'text',      'min_len' => 0,      'max_len' => 10,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'tnext' =>     array (      'name' => 'tnext',      'description' => 'Tnext',      'type' => 'text',      'min_len' => 0,      'max_len' => 10,      'blank_ok' => 0,      'duplicate_ok' => 1,    ),    'album_id' =>     array (      'name' => 'album_id',      'description' => 'Album Id',      'type' => 'number',      'min_len' => 0,      'max_len' => 11,      'blank_ok' => 1,      'duplicate_ok' => 1,    ),  ),);         function userSnapsData() {               $this->Data($this->config);      }   }?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?