顯示具有 error 標籤的文章。 顯示所有文章
顯示具有 error 標籤的文章。 顯示所有文章

2016年9月16日 星期五

[php] PHP Deprecated: Methods with the same name as their class will not be constructors in a future version of PHP 錯誤

當執行php程式的時候,error訊息會出現

PHP Deprecated:  Methods with the same name as their class will not be constructors in a future version of PHP

這是因為在PHP之後不允許使用class與function使用一樣的名字,一律統一使用建構子
__construct,將class內的function修正後即可繼續正常執行
__construct

2011年6月29日 星期三

sql 1016 - Can't open file: 'table_name.MYI' (error: 145)

今天早上有一隻程式突然掛點,一直跑不起來,檢查了一下是mysql的問題,

造成資料撈不出來,一直說Can't open file: 'table_name.MYI'

修復方法為在sql鍵入以下指令

REPAIR table table_name(table的名稱);

搞定!!

 

Google Analytics初學者入門簡介