添加'到php中的文本[已关闭]

pn9klfpd  于 2022-12-25  发布在  PHP
关注(0)|答案(1)|浏览(115)

已关闭。此问题需要details or clarity。当前不接受答案。
**想要改进此问题?**添加详细信息并通过editing this post阐明问题。

2天前关闭。
Improve this question
我必须加上,正如你在下面看到的,但是如果我用了竖线,我计算了竖线,怎么可能在字符串中加上字符'呢?
我尝试使用',但不起作用,因为出现了\。

<?php
   
   $user_id="name"
   $url_actor="https://domain:8000/".$user_id."/\'".json_decode($response_user->body(), true)[0]["last_name"]."\'";
gv8xihay

gv8xihay1#

由于使用双引号来描述字符串,因此不必转义撇号:就用“。

print ("There isn't a need to escape the apostrophe.");
print ('... but that\'s not the case in single quotes.');

如果使用单引号来标记字符串的开头和结尾,则需要先添加反斜杠(同样,在双引号内,需要转义“)。

相关问题