如何在双引号php字符串中插入php变量

时间:2016-05-03 02:16:49

标签: php

如何在我的html字符串中插入php变量?我试着这样做,但它不会跑。请参考下面的代码。

<?php 
  $a['id'] = 1;
  $html .= '<a href="{$a['id']}">Link</a>';
?>

1 个答案:

答案 0 :(得分:2)

你错过了结束'。此外,您需要使用PHP并置运算符.连接它们以将字符串与变量连接:

$a['id'] = 1;
$html .= '<a href="' . $a['id'] . '">Link</a>';