Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一系列字符串,我用 fgets() 从 .csv 文件中读取,然后分解成一个数组。该文件具有 csv 标准双引号。例如:
<a href=""http://www.youtube.com/watch?v=HqaemO-lI8s#t=16m6s"" target=_blank"">video</a>
是我正在阅读的值之一。我需要将“”的所有实例都替换为“。我知道这是一个简单的解决方案,但我似乎无法绕开逃跑的方式字符会起作用。
使用 str_replace:
$string = '<a href="""">test</a>'; $string = str_replace('""', '"', $string); echo $string; // Outputs: <a href="">test</a>