Home >Backend Development >PHP Tutorial >问下php的常识有关问题 echo和$字符串

问下php的常识有关问题 echo和$字符串

WBOY
WBOYOriginal
2016-06-13 12:14:07886browse

问下php的常识问题 echo和$字符串
问题1:发现在sql语句中可以带$号,比如$sql="select * from table where id=$id";这个$id是什么时候被解析它的值的呢?
问题2:echo 是php必不可少的调试语句,在什么情况下echo 不能起调式作用呢?比如class中,还有????
------解决思路----------------------
$sql = "select * from table where id=$id";
右边串中的 $id 在向左边的 $sql 赋值时就解析了

echo 的主要作用是输出运算结果,而不是调试
虽然也可以在调试的时候利用它打印一些中间量来判断程序运行的情况
php 提供的调试函数主要有:
var_dump 用于观察变量的类型和值
debug_zval_dump 用于观察变量的引用情况
debug_backtrace 生成一个回溯,用于观察函数(方法)的调用情况

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn