Heim  >  Artikel  >  Backend-Entwicklung  >  Detaillierte Erläuterung der Verwendung von String-Splicing in PHP

Detaillierte Erläuterung der Verwendung von String-Splicing in PHP

伊谢尔伦
伊谢尔伦Original
2017-06-27 11:15:5526940Durchsuche

首先和大家说下,学习任何一门语言都要去官网去看文档,因为官方的文档正确性有保证,并且也最有广泛性。

有两个字符串(string)运算符。

第一个是连接运算符(“.”),它返回其左右参数连接后的字符串。

第二个是连接赋值运算符(“.=”),它将右边参数附加到左边的参数之后。

<?php
$a = "Hello ";
$b = $a . "World!"; // now $b contains "Hello World!"

$a = "Hello ";
$a .= "World!";     // now $a contains "Hello World!"
?>
<?php
    $var = 3;
    echo "Result:" . $var + 3;
?>

运行后发现只输出了一个 ‘3’,为什么呢? 

因为第一字符串“Result3”被创建,这然后被添加到3得到3,非空非数字字符串被转换为0。

如果要输出"Result: 6",则代码如下:

<?php
    $var = 3;
    echo "Result:" . ($var + 3);
?>

  下面的例子---如果试图用连接运算符加号,你的结果将是这些数字为字符串的结果。

<?php

echo "thr"."ee";           //prints the string "three"
echo "twe" . "lve";        //prints the string "twelve"
echo 1 . 2;                //prints the string "12"
echo 1.2;                  //prints the number 1.2
echo 1+2;                  //prints the number 3

?>

大括号服务好替代串联,和他们更快地输入和代码看起来更干净。

推荐手册php完全自学手册

记得用双引号(“”)而不是单引号(‘’)作为其内容是由PHP parced,因为在单引号(''),你会得到所提供的变量litaral名称

<?php

$a = &#39;12345&#39;;

// This works:
echo "qwe{$a}rty"; // qwe12345rty, using braces
echo "qwe" . $a . "rty"; // qwe12345rty, concatenation used

// Does not work:
echo &#39;qwe{$a}rty&#39;; // qwe{$a}rty, single quotes are not parsed
echo "qwe$arty"; // qwe, because $a became $arty, which is undefined

?>
<?php

$var = "hello";
$world = "world";

echo "$var" . &#39;$world&#39;; //outputs hello$world

echo "$var" . "$world"; //outputs helloworld

echo "$var" .  $world; //outputs helloworld

?>

可以看出使用使用(‘’)即把单引号里的内容作为了字符,直接echo出来了。而使用(“”)则保留了变量。

相关文章推荐:           
1.php中字符串的连接运算符是什么
2.php几种字符串连接的效率比较
相关视频推荐:
1.独孤九贱(4)_PHP视频教程

Das obige ist der detaillierte Inhalt vonDetaillierte Erläuterung der Verwendung von String-Splicing in PHP. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn