如何将"
字符串添加到PHP中的第一个和最后一个
类似的东西:
hello world
就像这样:
"hello" "world"
PHP中有before-string和after-string函数吗?
答案 0 :(得分:1)
只需像
一样使用它echo '"Hello" "World"';
您可以像{/ p>一样使用preg_replace
echo preg_replace('/(\w+)/',"\"$1\"","hello world");
答案 1 :(得分:1)
在PHP中,有两种基本的输出方式:echo和print。
在本教程中,我们几乎在每个示例中都使用echo(和print)。因此,本章包含有关这两个输出语句的更多信息。
答案 2 :(得分:0)
试试这个:
<?php
$str="hello world";//your string
$str=str_replace(" ",'" "',$str); //replace all spaces with " "
echo '"'.$str.'"';//while displaying add double quotes in begning and end.
?>
答案 3 :(得分:0)
没有这样的功能 但是你可以尝试在字符串的空格上使用split函数,然后使用你的胶水使用implode()函数,或者你可以简单地尝试使用regex.Latter会给你1行调用来执行此操作。