1. $php_errormsg — 前一個(gè)錯(cuò)誤信息
?php
@strpos();
echo $php_errormsg;
?>
2.$http_response_header — HTTP 響應(yīng)頭
?php
function get_contents() {
file_get_contents("http://example.com");
var_dump($http_response_header);
}
get_contents();
var_dump($http_response_header);
?>
3. $argc — 傳遞給腳本的參數(shù)數(shù)目
?php
var_dump($argc);
?>
當(dāng)使用這個(gè)命令執(zhí)行: php script.php arg1 arg2 arg3
4. $argv — 傳遞給腳本的參數(shù)數(shù)組
?php
var_dump($argv);
?>
當(dāng)使用這個(gè)命令執(zhí)行:php script.php arg1 arg2 arg3
- __FILE__:返回所在路徑文件名和文件名稱
- __DIR__:返回文件所在的完整目錄
- __LINE__:返回當(dāng)前文件代碼的行號(hào)
- __CLASS__:返回當(dāng)前類名
- __FUNCTION__:返回當(dāng)前方法名
- __METHOD__:返回當(dāng)前類名和方法名
var_dump(__FILE__); //所在路徑文件名和文件名稱 E:\demo\blog_code\predefined\predefined.php
var_dump(__DIR__); //所在完整目錄 E:\demo\blog_code\predefined
var_dump(__LINE__); //代碼所在行號(hào) 4
class testClass{
function testMethod(){
var_dump(__FUNCTION__); //返回當(dāng)前方法名 testMethod
var_dump(__CLASS__); //返回類名 testClass
var_dump(__METHOD__); //類名加方法名 testClass::testMethod
}
}
$a=new testClass();
$a->testMethod();
您可能感興趣的文章:- PHP預(yù)定義接口——Iterator用法示例
- PHP之預(yù)定義接口詳解
- PHP 預(yù)定義變量、魔術(shù)常量和魔術(shù)方法功能與用法小結(jié)
- PHP中預(yù)定義的6種接口介紹
- php中常用的預(yù)定義變量小結(jié)
- php學(xué)習(xí)筆記 [預(yù)定義數(shù)組(超全局?jǐn)?shù)組)]
- PHP教程 預(yù)定義變量
- 詳解PHP的7個(gè)預(yù)定義接口