为了账号安全,请及时绑定邮箱和手机立即绑定

用PHP转义引号

用PHP转义引号

PHP
桃花长相依 2019-06-17 16:25:49
用PHP转义引号我收到了分析错误,我想是因为引号"time"..我怎么才能把它当作一根绳子呢?<?php     $text1= 'From time to "time" this submerged or latent theater in 'Hamlet'     becomes almost overt. It is close to the surface in Hamlet's pretense of madness,     the "antic disposition" he puts on to protect himself and prevent his antagonists         from plucking out the heart of his mystery. It is even closer to the surface when     Hamlet enters his mother's room and holds up, side by side, the pictures of the     two kings, Old Hamlet and Claudius, and proceeds to describe for her the true     nature of the choice she has made, presenting truth by means of a show.     Similarly, when he leaps into the open grave at Ophelia's funeral, ranting in     high heroic terms, he is acting out for Laertes, and perhaps for himself as well,     the folly of excessive, melodramatic expressions of grief.";     $text2= 'From time to "time"';     similar_text($textl, $text2, $p);     echo "Percent: $p%";问题是我不能手动添加\在每个引号之前。这是我需要比较的实际文本。
查看完整描述

3 回答

?
至尊宝的传说

TA贡献1789条经验 获得超10个赞

使用加法斜杠职能:

 $str = "Is your name O'reilly?";

 // Outputs: Is your name O\'reilly?
   echo addslashes($str);


查看完整回答
反对 回复 2019-06-17
?
智慧大石

TA贡献1946条经验 获得超3个赞

不要将文本保存在php文件中,而是保存在名为“text.txt”的普通文本文件中。

然后用一个简单的$text1 = file_get_contents('text.txt');命令让你的文本没有一个问题。


查看完整回答
反对 回复 2019-06-17
  • 3 回答
  • 0 关注
  • 665 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信