您好,欢迎访问一九零五行业门户网

再谈PHP单引号和双引号区别_PHP教程

其实在之前的bkjia视频教程里我就讲过,单引号和双引号的区别和效率问题,但还是很多朋友了解的不是很清楚,一直以为php中单引号和双引号是互通的,直到有一天,发现单引号和双引号出现错误的时候才去学习研究。所以今天再拿出来谈谈他们的区别,希望大家不要再为此困惑。
” ” 双引号里面的字段会经过编译器解释,然后再当作html代码输出。
‘ ‘ 单引号里面的不进行解释,直接输出。
从字面意思上就可以看出,单引号比双引号要快了。
例如:
$abc=’my name is tome’;
echo $abc //结果是:my name is tom
echo ‘$abc’ //结果是:$abc
echo “$abc” //结果是:my name is tom
特别在使用mysql语句的时候,双引号和单引号的用法让新手不知所措,在这里,举个例子,来进行说明。
假设查询条件中使用的是常量,例如:
select * from abc_table where user_name=’abc’;
sql语句可以写成:
sqlstr = “select * from abc_table where user _name= ‘abc’” ;
假设查询条件中使用的是变量,例如:
$user_name = $_request[user_name]; //字符串变量

$user=array (”name”=> $_request[user_name‘,age=>$_request[age];//数组变量
sql语句就可以写成:
sqlstr = “select * from abc_table where user_name = ‘ ” . $user_name . ” ‘ “;
sqlstr = “select * from abc_table where user_name = ‘ ” . $user[name] . ” ‘ “;
对比一下:
sqlstr=”select * from abc_table where user_name = ‘ abc ‘ ” ;
sqlstr=”select * from abc_table where user_name =’ ” . $user _name . ” ‘ “;
sqlstr=”select * from abc_table where user_name =’ ” . $user[name] . ” ‘ “;
sqlstr可以分解为以下3个部分:
1:”select * from table where user_name = ‘ ” //固定sql语句
2:$user //变量
3:” ‘ ”
1,2,3部分字符串之间用”.” 来连接
http://www.bkjia.com/phpjc/486483.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/486483.htmltecharticle其实在之前的php100视频教程里我就讲过,单引号和双引号的区别和效率问题,但还是很多朋友了解的不是很清楚,一直以为php中单引号和双...
其它类似信息

推荐信息