网站地图    收藏   

主页 > php专栏 > php应用 >

PHP编程学习笔记 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] 文章主要是一个站长在学习php过程中一些用到的函数与方法及对各种方法的理解与简单的实例,下面全部放出来希望对你学习php有帮助 PHP使用header函数设置HTTP头的示例方法,代码如下:...

PHP编程学习笔记

文章主要是一个站长在学习php过程中一些用到的函数与方法及对各种方法的理解与简单的实例,下面全部放出来希望对你学习php有帮助.

PHP使用header函数设置HTTP头的示例方法,代码如下:

  1. //定义编码 
  2. header( Content-Type:text/html;charset=utf-8 ); 
  3. //Atom 
  4. header(Content-type: application/atom+xml); 
  5. //CSS 
  6. header(Content-type: text/css); 
  7. //Javascript 
  8. header(Content-type: text/javascript); 
  9. //JPEG Image 
  10. header(Content-type: image/jpeg); 
  11. //JSON 
  12. header(Content-type: application/json); 
  13. //PDF 
  14. header(Content-type: application/pdf); 
  15. //RSS 
  16. header(Content-Type: application/rss+xml; charset=ISO-8859-1); 
  17. //Text (Plain) 
  18. header(Content-type: text/plain); 
  19. //XML 
  20. header(Content-type: text/xml); 
  21. // ok 
  22. header(HTTP/1.1 200 OK); 
  23. //设置一个404头: 
  24. header(HTTP/1.1 404 Not Found); 
  25. //设置地址被永久的重定向 
  26. header(HTTP/1.1 301 Moved Permanently); 
  27. //转到一个新地址 
  28. header(Location: http://www.example.org/); 
  29. //文件延迟转向: 
  30. header(Refresh: 10; url=http://www.example.org/); 
  31. print You will be redirected in 10 seconds; 
  32. //当然,也可以使用html语法实现 
  33. // <meta http-equiv="refresh" content="10;http://www.example.org/ /> 
  34. // override X-Powered-By: PHP: 
  35. header(X-Powered-By: PHP/4.4.0); 
  36. header(X-Powered-By: Brain/0.6b); 
  37. //文档语言 
  38. header(Content-language: en); 
  39. //告诉浏览器最后一次修改时间 
  40. $time = time() - 60; // or filemtime($fn), etc 
  41. header(Last-Modified: .gmdate(D, d M Y H:i:s, $time). GMT); 
  42. //告诉浏览器文档内容没有发生改变 
  43. header(HTTP/1.1 304 Not Modified); 
  44. //设置内容长度 
  45. header(Content-Length: 1234); 
  46. //设置为一个下载类型 
  47. header(Content-Type: application/octet-stream); 
  48. header(Content-Disposition: attachment; filename="example.zip"); 
  49. header(Content-Transfer-Encoding: binary); 
  50. // load the file to send: 
  51. readfile(example.zip); 
  52. // 对当前文档禁用缓存 
  53. header(Cache-Control: no-cache, no-store, max-age=0, must-revalidate); 
  54. header(Expires: Mon, 26 Jul 1997 05:00:00 GMT); // Date in the past 
  55. header(Pragma: no-cache); 
  56. //设置内容类型: 
  57. header(Content-Type: text/html; charset=iso-8859-1); 
  58. header(Content-Type: text/html; charset=utf-8); 
  59. header(Content-Type: text/plain); //纯文本格式 
  60. header(Content-Type: image/jpeg); //JPG*** 
  61. header(Content-Type: application/zip); // ZIP文件 
  62. header(Content-Type: application/pdf); // PDF文件 
  63. header(Content-Type: audio/mpeg); // 音频文件 
  64. header(Content-Type: application/x-shockw**e-flash); //Flash动画 
  65. //显示登陆对话框 
  66. header(HTTP/1.1 401 Unauthorized); 
  67. header(WWW-Authenticate: Basic realm="Top Secret"); 
  68. print Text that will be displayed if the user hits cancel or ; 
  69. print enters wrong login data; 

php中static静态变量的使用方法详解

php中的变量作用范围的另一个重要特性就是静态变量(static 变量),静态变量仅在局部函数域中存在且只被初始化一次,当程序执行离开此作用域时,其值不会消失,会使用上次执行的结果.

编程实例,代码如下:

  1. function test()  
  2. {  
  3.   static $aa = 0;  
  4.   return $aa++; 
  5. }  
  6. $aa = "1000"
  7. echo $aa
  8. echo test(); 
  9. echo test(); 
  10. echo $aa
  11. //本函数每调用test()都会输出 $aa的值并加一。 
  12. //上文代码运行输出: 
  13. //1000 
  14. //0 
  15. //1 
  16. //1000 

静态变量也提供了一种处理递归函数的方法,递归函数是一种自己调用自己的方法,写递归函数时要小心,因为可能会无穷递归下去,没有出口.务必确保,有方法来中止递归.

一维数组按照元素或者键值分组变为二维数组

有时候查询数据库记录后会对数据库查询结果进行分组,即将一维数组变为二维数组,方便调用使用(通常是json),代码如下:

  1. $arr = array
  2.     '0'=>array
  3.             'firmware'=>'f1'
  4.             'version'=>'1'
  5.         ), 
  6.     '1'=>array
  7.             'firmware'=>'f1'
  8.             'version'=>'2'
  9.         ), 
  10.     '2'=>array
  11.             'firmware'=>'f1'
  12.             'version'=>'3'
  13.         ), 
  14.     '3'=>array
  15.             'firmware'=>'f2'
  16.             'version'=>'1'
  17.         ), 
  18.     '4'=>array
  19.             'firmware'=>'f2'
  20.             'version'=>'2'
  21.         ), 
  22.     ); 
  23.     $new_arr  =  array(); 
  24.     foreach ($arr as $row ){ 
  25.         $new_arr[$row['firmware']][] = $row['version']; 
  26.     } 
  27.     var_dump($new_arr); 
  28.  
  29. /*转换后 
  30. Array 
  31. ( 
  32.     [f1] => Array 
  33.         ( 
  34.             [0] => 1 
  35.             [1] => 2 
  36.             [2] => 3 
  37.         ) 
  38.     [f2] => Array 
  39.         ( 
  40.             [0] => 1 
  41.             [1] => 2 
  42.         ) 
  43.  
  44. )*/ 

PHP的静态绑定和动态绑定(private/public)

子类Foo的对象调用了test()方法,test()方法调用了$this->testPrivate();这个$this此时应该是子类的引用,按理说应该调用子类的testPrivate()方法,实际上却调用了父类的testPrivate()方法.代码如下:

  1. class Bar  
  2.     public function test() { 
  3.         $this->testPrivate(); 
  4.         $this->testPublic(); 
  5.     } 
  6.  
  7.     public function testPublic() { 
  8.         echo "Bar::testPublicn"
  9.     } 
  10.      
  11.     private function testPrivate() { 
  12.         echo "Bar::testPrivaten"
  13.     } 
  14.  
  15. class Foo extends Bar  
  16.     public function testPublic() { 
  17.         echo "Foo::testPublicn"
  18.     } 
  19.      
  20.     private function testPrivate() { 
  21.         echo "Foo::testPrivaten"
  22.     } 
  23.  
  24. $myFoo = new Foo(); 
  25. $myFoo->test();  
  26. // 运行结果 
  27. // Bar->testPrivate  
  28. // Foo->testPublic 

这是PHP的动态绑定和静态绑定的一种情况.

public是动态绑定,在编译期不绑定,所以在运行期调用父类的test()方法的时候,会解析为子类的public方法.

而private是私有的,不会继承到子类,在编译期就绑定了,是一种“静态”的绑定(类似5.3后的self).

与这个相关的是LSB,静态延迟绑定,PHP5.3因为有了这个特性之后,使PHP的OOP得到加强

public:可以被继承,也可以被外部调用.

private:不可以被继承,也不可以被外部调用.

protected:可以被继承,但不能被外部调用.

PHP三种运行方式mod_php5/cgi/fast-cgi

a.通过HTTPServer内置的模块来实现,例如Apache的mod_php5,类似的Apache内置的mod_perl可以对perl支持;

b.通过CGI来实现,这个就好比之前perl的CGI,该种方式的缺点是性能差,因为每次服务器遇到这些脚本都需要重新启动脚本解析器来执行脚本然后将结果返回给服务器,另一方面就是不太安全,该方面几乎很少使用了.

c.最新出现一种叫做FastCGI.所谓FastCGI就是对CGI的改进,它一般采用C/S结构,一般脚本处理器会启动一个或者多个daemon进程,每次HTTPServer遇到脚本的时候,直接交付给FastCGI的进程来执行,然后将得到的结果(通常为html)返回给浏览器.

该种方法的问题存在一个小问题是当遇到大流量的频繁请求的话,脚本处理器的daemon进程可能会超负荷从而变得很慢,甚至发生内存泄漏;

但是比较起Apache的内置模块的方式的优点是由于Server和脚本解析器完全分开各负其责,因此服务器不再臃肿,可以专心地进行静态文件响 应或者将动态脚本解析器的结果返回给用户客户端,所以比较起Apache的内置模块方式,有时候性能要提高很多,有人测试可能会达到 Apache+mod_php的5~10倍.

三种常用模式:

Apache+mod_php5;lightppd+spawn-fcgi;nginx+PHP-FPM

我们可以使用到生产环境中的:

0) 如果不是server cluster的话:

可以使用以上任一种,不过有各种测试表明nginx+PHP-FPM性能优越,但是Apache+mod_php5很经典模块多,比如对.htaccess等的支持.

如果构建server cluster的话:

1) nginx作为反向代理服务器,后台多台Apache+mod_php5.

nginx处理静态文件,及对php并发请求对后台多台app server的负载均衡;

2) nginx作为反向代理器,后台多台PHP-FPM 

nginx处理静态文件及将php并发请求发送到后台php-fpm来解析;

三种变量命名规则(匈牙利法,小驼峰法,大驼峰法)

1. 匈牙利命名:

•开头字母用变量类型的缩写,其余部分用变量的英文或英文的缩写,要求单词第一个字母大写.

•For example: long lsum = 0;"l"是类型的缩写;

2. 小驼峰式:(little camel-case)

•第一个单词首字母小写,后面其他单词首字母大写.

•For example: string firstName = string.Empty;

3. 大驼峰式:(big camel-case)

•每个单词的第一个字母都大写;

•For example:string FirstName = string.Empty;

解决 Json 中文转码问题,代码如下:

  1. //代码 
  2. $data = array
  3.     'status'=>'1'
  4.     'method'=>'登陆'
  5.     'message'=>'成功'
  6. ); 
  7. echo json_encode($data); 
  8. //显示 
  9. {"status":"1","method":"u767bu9646","message":"u6210u529f"

json_encode 只能接受utf-8格式的数据,最终的json中中文部分被替换为unicode编码,我们要解决的就是将对象转换为json并保证对象内部的中文在json中仍然是以正常的中文出现.

先将类中的中文字段进行url编码(urlencode),然后再对对象进行json编码(jsonencode),最后url解码(urldecode)json,即最终的json,里面的中文依旧是那个中文,代码如下:

  1. //代码 
  2. foreach ( $data as $key => $value ) {  
  3.     $newData[$key] = urlencode ( $value );  
  4. }  
  5. echo urldecode(json_encode($newData)); 
  6. //显示 
  7. {"status":"1","method":"登陆","message":"成功"

Ajax跨域请求CORS错误:

编写Json api供其他站点查询调用的时候有时候使用ajax方式获取,此时,可能ACAO的设置,那么将发生CROS错误.

报错:XMLHttpRequest cannot load http://www.phpfensi.com . No 'Access-Control-Allow-Origin' header is present on the requested resource.

解决办法:

  1. header('Access-Control-Allow-Origin: *');   
  2. header('Access-Control-Allow-Origin: ccdd.com'); 
  3. codeigniter指定地址实现HTTPS访问管理 
  4. //启动hooks 
  5. //app/config/config.php 
  6. $config['enable_hooks'] = TRUE; 
  7.  
  8. //hooks配置 
  9. ///app/config/hooks.php 
  10. $hook['post_controller_constructor'][] = array
  11.         'function' => 'check_ssl'
  12.         'filename' => 'ssl.php'
  13.         'filepath' => 'hooks'
  14.     ); 
  15.  
  16. //插件编写 
  17. //app/hooks/ssl.php 
  18. function check_ssl(){ 
  19. $CI =& get_instance(); 
  20. $class = $CI->router->fetch_class(); 
  21. $method = $CI->router->fetch_method(); 
  22.  
  23.  
  24. $ssl = $CI->config->item('ssl_class_method');    
  25. $partial = $CI->config->item('no_ssl_class_method');    
  26.  
  27. if(in_array($class.'/'.$method,$ssl)){ 
  28.     //force_ssl(); 
  29.     $CI =&get_instance(); 
  30.     $CI->config->config['base_url'] = str_replace('http://''https://'$CI->config->config['base_url']); 
  31.     if ($_SERVER['SERVER_PORT'] != 443) redirect($CI->uri->uri_string()); 
  32. else if(in_array($class.'/'.$method,$partial)) 
  33.         return
  34.     } 
  35.     else
  36.         //unforce_ssl 
  37.         $CI =&get_instance(); 
  38.         $CI->config->config['base_url'] = str_replace('https://''http://'$CI->config->config['base_url']); 
  39.         if ($_SERVER['SERVER_PORT'] == 443) redirect($CI->uri->uri_string()); 
  40.     } 
  41.  
  42. //config 配置需要使用https的 class method 
  43. //app/config/config.php 
  44. $config['ssl_class_method'] = array
  45.     'U_class/A_method'
  46.     'V_class/B_method'
  47.     'W_class/C_method'
  48.     'X_class/D_method'
  49.     ); //强制使用ssl 
  50. $config['no_ssl_class_method'] = array(); 
  51. //强制不使用ssl 

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论