Blogger Information
Blog 4
fans 0
comment 0
visits 5301
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
字符串声明双引号和单引号有什么区别
计算机的博客
Original
1617 people have browsed it

【重要知识点】PHP面试题中,高概率面试题(建议背诵并实验三遍以上)

   1.双引号解析变量,但是单引号不解析变量。

   2.在双引号里面插入变量,变量后面如果有英文或中文字符,它会把这个字符和变量拼接起来,视为一整个变量。一定要在变          量后面接上特殊字符,例如空格等分开。

   3.如果在双引号里面插变量的时候,后面不想有空格,可以拿大括号将变量包起来。

   4.双引号解析转义字符,单引号不解析转义字符。但,单引号能解析\' 和\

   5.单引号效率高于双引号,尽可能使用单引号

   6.双号和单引号可以互插!!!双引号当中插入单引号,单引号当中插入变量,这个变量会被解析。

   7.神奇的字符串拼接胶水——(.)点,用来拼接字符串。

   8.我们将定界符声明字符串视为双引号一样的功能来看待。

<?php
//声明变量$shouji
$shouji = '为了苹果手机去卖肾';
//在双引号中放$shouji 然后echo 一下是什么效果呢?
$str = "$shouji 会不会显示呢?";
//输入$str试试
echo $str;
?>

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post