当前位置:首页 > PHP教程 > php应用 > 列表

不常用但很实用的PHP预定义变量分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-11-28 18:23:47 浏览: 评论:0 

在本篇文章里小编给大家整理了关于不常用但很实用的PHP预定义变量相关内容,有需要的朋友们可以学习下。

1. $php_errormsg — 前一个错误信息

  1. <?php 
  2.  
  3. @strpos(); 
  4.  
  5. echo $php_errormsg
  6.  
  7. ?> 

2.$http_response_header — HTTP 响应头

  1. <?php 
  2.  
  3. function get_contents() { 
  4.  
  5.  file_get_contents("http://example.com"); 
  6.  
  7.  var_dump($http_response_header); 
  8.  
  9.  
  10. get_contents(); 
  11.  
  12. var_dump($http_response_header); 
  13.  
  14. ?> 

3. $argc — 传递给脚本的参数数目

  1. <?php 
  2.  
  3. var_dump($argc); 
  4.  
  5. ?> 

当使用这个命令执行: php script.php arg1 arg2 arg3

4. $argv — 传递给脚本的参数数组

  1. <?php 
  2.  
  3. var_dump($argv); 
  4.  
  5. ?> 

当使用这个命令执行:php script.php arg1 arg2 arg3

__FILE__:返回所在路径文件名和文件名称

__DIR__:返回文件所在的完整目录

__LINE__:返回当前文件代码的行号

__CLASS__:返回当前类名

__FUNCTION__:返回当前方法名

__METHOD__:返回当前类名和方法名

  1. var_dump(__FILE__); //所在路径文件名和文件名称   E:\demo\blog_code\predefined\predefined.php 
  2. var_dump(__DIR__); //所在完整目录         E:\demo\blog_code\predefined 
  3. var_dump(__LINE__); //代码所在行号         4 
  4. class testClass{ 
  5.   function testMethod(){ 
  6.     var_dump(__FUNCTION__); //返回当前方法名  testMethod 
  7.     var_dump(__CLASS__);  //返回类名     testClass 
  8.     var_dump(__METHOD__);  //类名加方法名   testClass::testMethod 
  9.   } 
  10.    
  11. $a=new testClass(); 
  12. $a->testMethod();

Tags: PHP预定义变量

分享到: