程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Using this when not in object context in

Using this when not in object context in

編輯:關於PHP編程



問題
Using $this when not in object context in
解決方法
private $link_id;

private $sql;

private $getAll = array();

private $getOne = array();

private $qRes;

public static function _init(&$dsn, $pconnect = FALSE, $halt = TRUE) {

if(!is_array($dsn)) exit('Error, Dsn not is array');

$dsn['host'] = (isset($dsn['host']))?$dsn['host']:'localhost';

$dsn['login'] = (isset($dsn['login']))?$dsn['login']:'root';

$dsn['dbpwd'] = (isset($dsn['dbpwd']))?$dsn['dbpwd']:NULL;

$dsn['db'] = (isset($dsn['db']))?$dsn['db']:'test';

$dsn['char'] = (isset($dsn['char']))?str_replace('-', NULL, $dsn['char']):'utf8';

if($pconnect) {

if(!$this->link_id = @mysql_pconnect($dsn['host'], $dsn['login'], $dsn['dbpwd'])) {

$halt && $this->getErrorMsg(__LINE__);

}

} else {

if(!$this->link_id = @mysql_connect($dsn['host'], $dsn['login'], $dsn['dbpwd'])) {# 執行到這裡出錯。。

$halt && $this->getErrorMsg(__LINE__);

}

}


復制代碼


參考答案
static function 中 用 self
參考答案
靜態函數裡用self!!!!!!!!!!!!!!!
參考答案
....我現在沒用static,現在是public function 他還是報錯
參考答案
那就是沒這方法

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved