Heim >Backend-Entwicklung >PHP-Tutorial >php读取文件内容至字符串并加以处理的代码

php读取文件内容至字符串并加以处理的代码

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-25 09:04:421258Durchsuche
  1. /*

  2. *读取文件内容至字符串中,同时去除换行、行首行尾空格。 
  3. */
  4. header("Content-type: text/html; charset=utf-8");
  5. echo preg_replace('/((\s)*(\n)+(\s)*)/i',',',file_get_contents('./file.php'));//End_php
  6. //输出:

  7. //aaaa,bbbb,cccc,dddd,eeee,ffff,gggg,hhhh,iiii,jjjj,kk kk,ll ll
  8. ?>
复制代码

file.php内容: aaaa

cccc dddd eeee ffff gggg hhhh iiii jjjj kk kk ll ll

//file.php替换空格(x)、Tab(T)效果 aaaa

TTTT cccc ddddT xxxxxxxxxxxT eeeexxxxxxxxxx ffff gggg hhhhxxxxxxxx xxxxxxxxiiii xxxxxxxxjjjjxxxxxxx kkxxxkkTT xxxxllxxllTT Txxxxxxxxxx TTTxx



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