大括号中的变量 - PHP 编码问题

发布于 2024-12-01 03:18:49 字数 842 浏览 0 评论 0原文

这是我的 PHP/MySQL 脚本:

<?php
    mysql_connect('localhost', 'root', 'test') or die (mysql_error());
    mysql_select_db('info1') or die (mysql_error());
    $result = mysql_query("SELECT * from automobiles");

    //Table starting tag and header cells
    while($row = mysql_fetch_array($result)){
        //Display the results in different cells
        echo "<dd><dl><img src=' " . $row['image'] . " '>" . $row['manufacturer'] ." " . $row['model'] . "</dd></dl>";
        echo "<dd><dl>" . $row['carinfo'] . "</dd></dl>";
    }

    //Table closing tag
    echo "</table>";
?>

但是,如果我这样做,它会工作吗:

{$myvariable}

用大括号对变量进行编码是个好主意吗?或者:

echo " . $row['variable']. "

感谢任何帮助,谢谢!

This is my PHP/MySQL script:

<?php
    mysql_connect('localhost', 'root', 'test') or die (mysql_error());
    mysql_select_db('info1') or die (mysql_error());
    $result = mysql_query("SELECT * from automobiles");

    //Table starting tag and header cells
    while($row = mysql_fetch_array($result)){
        //Display the results in different cells
        echo "<dd><dl><img src=' " . $row['image'] . " '>" . $row['manufacturer'] ." " . $row['model'] . "</dd></dl>";
        echo "<dd><dl>" . $row['carinfo'] . "</dd></dl>";
    }

    //Table closing tag
    echo "</table>";
?>

However, would it work if I did it this way:

{$myvariable}

Is it a good idea to code the variables with the braces, or as:

echo " . $row['variable']. "

Any help is appreciated, thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

∝单色的世界 2024-12-08 03:18:49

你可以这样做:

echo "<dd><dl>{$row['carinfo']}</dd></dl>";

你不能这样做:

echo "<dd><dl>$row['carinfo']</dd></dl>";

这也行不通:

echo '<dd><dl>{$row['carinfo']}</dd></dl>';

你的输出实际上是:

{$row[ 一些 PHP 错误

这是由于使用单引号而不是双引号造成的。错误是因为您没有转义变量内的单引号。

如果您这样做:

echo '<dd><dl>{$row["carinfo"]}</dd></dl>';

您的输出实际上将是:

{$row["carinfo"]}

对于相同的单引号与双引号推理。

You can do this:

echo "<dd><dl>{$row['carinfo']}</dd></dl>";

You cannot do this:

echo "<dd><dl>$row['carinfo']</dd></dl>";

This also wont work:

echo '<dd><dl>{$row['carinfo']}</dd></dl>';

Your output would actually be:

<dd><dl>{$row[ SOME PHP ERROR

This is due to using single quotes instead of double quotes. And the error would be because you did not escape the single quotes inside the variable.

If you did this:

echo '<dd><dl>{$row["carinfo"]}</dd></dl>';

Your output would actually be:

<dd><dl>{$row["carinfo"]}</dd></dl>

For the same single quote vs double quote reasoning.

呆橘 2024-12-08 03:18:49

我个人更喜欢使用 " " 。 $行['变量']。 “” 语法,因为它更容易阅读代码,特别是如果您有代码语法荧光笔。但使用这种语法是可以接受的:"{$var['field']}"

I personally prefer using the " " . $row['variable']. " " syntax because it's easier to read code, specially if you have a code syntax highlighter. But using this syntax is acceptable: "{$var['field']}".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文