WordPress PHP 简单读取txt文件的例子 发表于 2013年08月05日 更新于 2021年06月08日 分类于 WordPress 12345<?php$txt = '1.txt';$content = file_get_contents($txt);file_put_contents('2.txt',str_replace('市','',str_replace('省','',$content)));?>