1. 程式人生 > >tp3.2 頁面Windows正常 linux異常,頁面找不到

tp3.2 頁面Windows正常 linux異常,頁面找不到

找不到 function isp div class pub fun world 而不是

這個問題主要是tp3.2

在讀取控制器裏的方法時,會把方法自動轉為小寫,

然後去對應view成找html文件,自然找不到。

class textController extends ComController
{


    public function helloWorld(){
        $this->display();
//        這個頁面就回去Text目錄下面找helloworld.html 頁面 而不是helloWorld.html

//       應該改為 $this->display(‘Text/helloworld‘);
    }
  }

tp3.2 頁面Windows正常 linux異常,頁面找不到