Heim >Backend-Entwicklung >PHP-Tutorial >php header函数使用要点

php header函数使用要点

WBOY
WBOYOriginal
2016-07-25 08:51:231000Durchsuche
  1. if(true)
  2. {
  3. header('location:http://bbs.it-home.org');
  4. }
  5. file_put_contents('test.txt', 'ok');//这句此行了,生成一个test.txt文件,文件内容为ok
复制代码

这个代码中,粗心的程序员会以为 header('location:http://bbs.it-home.org'); 就over了,事实上,后台的代码却仍然被执行了,所以使用 header(location) 的时候,不管是封装在另一个函数还是直接写的,都建议在后面加 exit() 确认程序中止。

>>> 您可能感兴趣的文章: php header()函数的简单例子 php header函数实现文件下载的实例代码 php中header函数的用法举例详解 php header 使用详解 php header函数 文件下载时直接提示保存的代码 php header头信息应用举例 php 文件头部(header)信息详解 PHP header()函数使用详解 PHP中HEADER头消息详解

>>>



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn