魔術變數
<?php
echo "這是第'.
__line__.
'行";
//當前行號
echo '該檔案位於 " '
. __file__ .
' " ';
// e:\wamp\www\test\index.php (絕對路徑)
echo '該檔案位於 " '
. __dir__ .
' " ';
// e:\wamp\www\test [等價於 dirname(__file__)]
echo '命名空間為:"'.
__namespace__
. '"';
// 當前命名空間的名稱(區分大小寫)
?>
<?phpclass test }
$t = new test();
$t->_print();
?>
__trait__
$_files
//通過 http post 方式上傳到當前指令碼的專案的 陣列
$_get
$_post
$_request // 預設情況下包含了 $_get,$_post 和 $_cookie 的陣列
$_server // 包含了諸如頭資訊(header)、路徑(path)、以及指令碼位置(script locations)等等資訊的陣列
$_session //當前指令碼可用 session 變數的陣列
move_uploaded_file() //將上傳的檔案移動到新位置
bool move_uploaded_file ( string $filename , string $destination )
零散知識點
一 sendmessage 和broadcastmessage 在了解專案結構的前提下,sendmessage 和broadcastmessage 方法使用起來非常靈活而且容易實現,但它使用了反射,而反射會造成更多的cpu開銷。在清楚要呼叫哪個元件的哪個方法時應該通過元件的引用直接呼叫方法 在不清楚...
零散知識點記錄
設定uiview的陰影效果 self.view layer setshadowoffset cgsizemake 2,2 self.view layer setshadowradius 6 self.view layer setshadowopacity 1 self.view layer sets...
python零散知識點
請看如下知識 python為string物件提供了轉換大小寫的方法 upper 和 lower 還不止這些,python還為我們提供了首字母大寫,其餘小寫的capitalize 方法,以及所有單詞首字母大寫,其餘小寫的title 方法。a hello everyone a hello everyon...