输入:从文本文件中读取输入:while ($data = FGets($soubor)) { ... }
。
输出:我希望在没有\n \t
的情况下将内容安全地保存到数据库(导入)。
我认为,它为装饰提供了另一种选择:
while () ...
$editedText = trim($data, "\t");
我需要\ t,\ n并检入整个 txt文档。有什么建议和样品吗?
没有RE 这项简单任务的最佳方法是什么?
答案 0 :(得分:3)
答案 1 :(得分:1)
strtr
:http://www.php.net/manual/en/function.strtr.php
strtr($ s,array(“\ r”=>“”,“\ n”=>“”,“\ t”=>“”));
str_replace
:http://www.php.net/manual/en/function.str-replace.php
见其他答案
答案 2 :(得分:0)
我用
s.trim();
它有助于从字符串的两端丢失whiteSpace,\ n,\ t等。