PHP将字符串添加到第一个和最后一个

时间:2015-10-05 09:30:38

标签: php

如何将"字符串添加到PHP中的第一个和最后一个

类似的东西:

hello world

就像这样:

"hello" "world"

PHP中有before-string和after-string函数吗?

4 个答案:

答案 0 :(得分:1)

只需像

一样使用它
echo '"Hello" "World"';

您可以像{/ p>一样使用preg_replace

echo preg_replace('/(\w+)/',"\"$1\"","hello world");

Demo

答案 1 :(得分:1)

在PHP中,有两种基本的输出方式:echo和print。

在本教程中,我们几乎在每个示例中都使用echo(和pr​​int)。因此,本章包含有关这两个输出语句的更多信息。

要获取更多数据,请使用http://www.w3schools.com/php/php_echo_print.asp

答案 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行调用来执行此操作。