php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
程序员文章站
2022-04-09 09:00:19
复制代码 代码如下:
<?php /* *读取文件内容至字符串中,同时去除换行、行首行尾空格。 */ header("content-type: text/html; charset=utf-8"); echo preg_replace('/((\s)*(\n)+(\s)*)/i',',',file_get_contents('./file.php'));//end_php
//输出:
aaaa,bbbb,cccc,dddd,eeee,ffff,gggg,hhhh,iiii,jjjj,kk kk,ll ll
//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
复制代码 代码如下:
<?php /* *读取文件内容至字符串中,同时去除换行、行首行尾空格。 */ header("content-type: text/html; charset=utf-8"); echo preg_replace('/((\s)*(\n)+(\s)*)/i',',',file_get_contents('./file.php'));//end_php
//输出:
aaaa,bbbb,cccc,dddd,eeee,ffff,gggg,hhhh,iiii,jjjj,kk kk,ll ll
//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
上一篇: 【Python小技巧】获取音频文件时长
下一篇: Django基础入门学习
推荐阅读
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)_PHP教程
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)_php技巧
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)_php技巧
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)_PHP教程
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格(Zjmainstay原创)
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格
-
php读取文件内容至字符串中,同时去除换行、空行、行首行尾空格