在PHP開發中,預先定義陣列是程式設計師經常使用的資料結構之一。 PHP中的預定義數組在變數名前面使用一個特殊字元來表示,例如:$_GET、$_POST、$_COOKIE都是PHP預定義數組。不過,有時候我們會遇到一些不是PHP預定義數組的數組,對於這些不同尋常的數組,我們該怎麼處理呢?本文將為您介紹一些非預先定義數組。
$var1 = 'Hello'; $var2 = 'World'; function myFunc() { echo $GLOBALS['var1'] . ' ' . $GLOBALS['var2']; } myFunc(); // 输出:Hello World
$fileContent = file_get_contents('http://www.example.com/'); print_r($http_response_header); // 输出: // Array // ( // [0] => HTTP/1.1 200 OK // [1] => Date: Thu, 23 Sep 2021 13:28:50 GMT // [2] => Server: Apache // [3] => X-Powered-By: PHP/7.4.23 // ... // )
php myScript.php arg1 arg2 arg3
腳本中可以透過$argc和$argv來取得參數資訊:
輸出:
参数个数:4 参数列表:Array ( [0] => myScript.php [1] => arg1 [2] => arg2 [3] => arg3 )
$fileHandle = fopen('not-exist-file.txt', 'r'); if (!$fileHandle) { echo $php_errormsg; }
輸出:"fopen(not-exist-file.txt): failed to open stream: No such file or directory"
總結
以上就是PHP中的一些非預先定義數組,包括:$GLOBALS、$HTTP_RAW_POST_DATA、$http_response_header、$argv、$argc和$php_errormsg。了解這些陣列的用途可以幫助我們更好地進行PHP編程。
以上是php的一些非預定義數組的詳細內容。更多資訊請關注PHP中文網其他相關文章!