DESCRIBE en_custom
执行错误: Can't create/write to file '/tmp/#sql_498_0.MYI' (Errcode: 28)
- /www/wwwroot/membranestructure/include/mysql.php on line 39
34.
$this->arrSql[] = $sql;
35.
if( $result = mysql_query($sql, $this->conn) ){
36.
return $result;
37.
}else{
38.
if(mysql_error()!=''){
39.
40.
syError("{$sql}<br />执行错误: " . mysql_error());
}else{
41.
return TRUE;
42.
}
43.
}
44.
}
- /www/wwwroot/membranestructure/include/mysql.php on line 8
3.
class db_mysql {
4.
public $conn;
5.
public $arrSql;
6.
public function getArray($sql)
7.
{
8.
9.
if( ! $result = $this->exec($sql) )return array();
if( ! mysql_num_rows($result) )return array();
10.
$rows = array();
11.
while($rows[] = mysql_fetch_array($result,MYSQL_ASSOC)){}
12.
mysql_free_result($result);
13.
array_pop($rows);
- /www/wwwroot/membranestructure/include/mysql.php on line 53
48.
return mysql_affected_rows($this->conn);
49.
}
50.
51.
public function getTable($tbl_name)
52.
{
53.
54.
return $this->getArray("DESCRIBE {$tbl_name}");
}
55.
56.
public function __construct($dbConfig)
57.
{
58.
$linkfunction = ( TRUE == $dbConfig['persistent'] ) ? 'mysql_pconnect' : 'mysql_connect';
- /www/wwwroot/membranestructure/include/Functions.php on line 419
414.
415.
$modelObj->tbl_name = (TRUE == $GLOBALS['G_DY']["db_spdb_full_tblname"]) ? $tbl_name : $GLOBALS['G_DY']['db']['prefix'] . $tbl_name;
416.
417.
if( !$pk ){
418.
419.
420.
@list($pk) = $modelObj->_db->getTable($modelObj->tbl_name);$pk = $pk['Field'];
421.
}
422.
423.
$modelObj->pk = $pk;
424.
- /www/wwwroot/membranestructure/include/Functions.php on line 901
896.
897.
//自定义页面
898.
899.
function custom_html($file){
900.
901.
902.
$c=syDB('custom')->find(array('file' => $file));
903.
return $c;
904.
905.
}
906.
- /www/wwwroot/membranestructure/source/index.php on line 11
6.
parent::__construct();
7.
$this->sy_class_type=syClass('syclasstype');
8.
}
9.
function index(){
10.
if($this->syArgs('file',1)){
11.
12.
$this->custom=custom_html($this->syArgs('file',1));
if($this->custom['template']!=''){$this->display('custom/'.$this->custom['template']);}else{$this->display("index.html");}
13.
}else{
14.
$this->display("index.html");
15.
}
16.
}
- /www/wwwroot/membranestructure/include/Functions.php on line 31
26.
27.
exit;
28.
29.
}
30.
31.
32.
$handle_controller->$__action();
33.
if(FALSE != $GLOBALS['G_DY']['view']['auto_display']){
34.
35.
$__tplname = $__controller.$GLOBALS['G_DY']['view']['auto_display_sep'].
36.
- /www/wwwroot/membranestructure/index.php on line 5
1.
<?php
2.
require("config.php");
3.
$doyoConfig['view']['config']['template_dir'] = APP_PATH.'/template/'.$doyoConfig['ext']['view_themes'];
4.
require(DOYO_PATH."/sys.php");
5.
spRun();