可以这样去写吗:
$str='{"userID":$userID}';是否为自动识别变量并做值替换?

如果不可以,但好像在mysql中又可以:
$sql ="insert into user(userID) values($userID)";


什么时候可以用,什么时候不能用?

答案:

变量标示符$可以在双引号中直接使用,比如

PHP code
            

$str = " {'userID': $userID } " ; // 这里的$userID就是指变量


但是$符在单引号中就是被当做字符处理而不是变量标示符

PHP code
            

echo ' $userID ' ; // 输出字符串$userID,而不是输出1

相关标签: PHP 基础问题

上一篇: 三种实例化bean方式——Spring对bean的管理(一)

下一篇: spring(一),注解实例化bean,@Configuration @Scope @Bean @ComponentScan @Lazy @Import ImportSelector @Condit

推荐阅读