php 单引号 和双引号区别
字符串 组合时候 双引号 可以直接写入变量
单引号 不可以
例如
$str ="123";
$test = "select * from user where id=$str"; //正确
$test = 'select * from user where id=$str'; //错误
php 单引号 和双引号区别
字符串 组合时候 双引号 可以直接写入变量
单引号 不可以
例如
$str ="123";
$test = "select * from user where id=$str"; //正确
$test = 'select * from user where id=$str'; //错误