你好,我有问题从文件中回显内容。
我想要的是解析和回显文件并更改行是否检测到其中的特定字符串(例如 \t:\t)。
这是我当前的代码
$full_file_name_exif_txt = "downloaded2/PisaTower/$entry.exif.txt";
if (file_exists($full_file_name_exif_txt) )
{
$file = @fopen($full_file_name_exif_txt, "r");
while (!feof($file))
{
if(strpos(file_get_contents("downloaded2/PisaTower/$entry.exif.txt"), " : "))
{
echo "I found \t:\t and i changed line <br/>";
}
}
fclose($file)
echo file_get_contents("downloaded2/PisaTower/$entry.exif.txt");
}
我的文本文件内容
IPTC:CodedCharacterSet : UTF8 IPTC:ApplicationRecordVersion : 105 IFD1:Compression : JPEG(旧式) IFD1:ResolutionUnit : 英寸 IFD1:ThumbnailOffset
期望文本文件输出
IPTC:编码字符集
: UTF8 IPTC:ApplicationRecordVersion
: 105 IFD1:压缩
: JPEG (旧式) IFD1:ResolutionUni
t: 英寸 IFD1:ThumbnailOffset
提前致谢!