Blogger Information
Blog 28
fans 0
comment 0
visits 16760
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP 对字符串的处理规则
植树青年小江同志的博客
Original
775 people have browsed it

PHP 在对字符串进行处理时,对使用单引号和双引号中的内容解析是不一样的:

  • 单引号中的内容将会直接认为是普通字符串

  • 双引号中的内容则能够进行一定的识别,如‘\'的转义和'$'之后的变量名

$money = '95e美元';
$title1 = '阿里{$money}收购了阿里';

需要注意变量边界符,在变量外带上变量边界符,才能正确识别双引号内的变量

特殊情况,利用函数:

换行

nl2br('\n')


Nowdoc就像单引号,不会解析字符串中的变量。

Heredoc就像双引号,执行时会解析变量。

$foo = 'bar';

$nowdoc = <<< 'NOWDOC'
    I am $foo
    NOWDOC;
// 输出 I am $foo

$heredoc = <<< HEREDOC
    I am $foo
    HEREDOC;
// 输出 I am bar


Correction status:qualified

Teacher's comments:
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