Home  >  Article  >  Backend Development  >  php echo里面的变量问题

php echo里面的变量问题

WBOY
WBOYOriginal
2016-06-06 20:32:151716browse

<code>echo '<input type="checkbox" value="'.$row['id'].'" name="todelete[]">';
</code>

这句代码中value里的$row用为什么要用'..'包裹起来。

回复内容:

<code>echo '<input type="checkbox" value="'.$row['id'].'" name="todelete[]">';
</code>

这句代码中value里的$row用为什么要用'..'包裹起来。

[.] 在php中可以将字符串拼接起来!
例如 $a = "zhangsan";echo $a.' nihao';
将会输出 zhangsan nihao

童鞋 你难道不知道 php用 点 拼接字符串吗?
$row 是个变量

类似javascript里的
'';

“.” 运算符在PHP里用于连接两个字符串, 跟Javascript里的“+”运算符连接两个字符串是一个意思

单引号是包裹前后字符串的

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