免費的課程能做到這樣已經算很不錯了好嗎。你想學習更詳細、進階的課程麻煩去買課程,免費的只能算體驗課程,不然你當花錢的人都是有錢人喔?
2018-03-06
類屬性必須定義為公有(public),受保護(protected),私有(private)之一。如果用 var 定義,則被視為公有(public)。
2018-02-28
<?php
$filename = 'this is a test file.';
//編寫代碼讀取$filename的文件內容
echo $filename;
$filename = 'this is a test file.';
//編寫代碼讀取$filename的文件內容
echo $filename;
2018-02-27
function __construct() {
print "構造函數被調用 \n";
}
function __destruct() {
print “析構函數被調用 \n”;
}
“析構函數被調用 \n”; 雙引號用半角輸入
print "構造函數被調用 \n";
}
function __destruct() {
print “析構函數被調用 \n”;
}
“析構函數被調用 \n”; 雙引號用半角輸入
2018-02-23