Heim >Backend-Entwicklung >PHP-Tutorial >PHP 单引号和双引号有哪些区别

PHP 单引号和双引号有哪些区别

WBOY
WBOYOriginal
2016-07-25 08:59:341029Durchsuche
本文介绍下,php程序中单引号与双引号的区别,以及二者之间的效率问题,有需要的朋友,可以参考下。

很多朋友,一直以为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可以分解为如下的三个部分: 1、”select * from table where user_name = ‘ ” //固定SQL语句 2、$user //变量 3、” ‘ ” 1,2,3部分字符串之间用”.” 来连接。

大家测试下看看效率如何呢?!



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