看板
[ PHP ]
討論串[請益] Class的一些問題
共 3 篇文章
首頁
上一頁
1
下一頁
尾頁
內容預覽:
PHP 4的話,你可以這樣寫:. class DataSource {. ..... .... 略. function & singleton() {. static $instance;. if(!$instance) {. $instance = new DataSource();. }. re
(還有287個字)
內容預覽:
class MyClass {. private static $instance;. public function MyClass()//建構子. {. self::$instance =& $this;. }. public static function &get_instance(). {
(還有200個字)
內容預覽:
function getDataSource(){. static $IsCreated = false;. static $DataSource ;. if(!$IsCreated){. $DataSource = new DataSource;. $IsCreated = true;. }. r
(還有1078個字)
首頁
上一頁
1
下一頁
尾頁