我在网上找了一些回复,但没有一个是非常准确的.
我希望能够做到这一点:
$id = "" . $result ["id"] . ""; $info = array('$id','Example'); echo $info[0];
这有可能吗?
你需要的是(不推荐):
原文链接:https://www.f2er.com/php/135697.html$info = array("$id",'Example'); // variable interpolation happens in ""
要不就
$info = array($id,'Example'); // directly use the variable,no quotes needed
您已将变量括在单引号内,并且在单引号内不会发生变量插值,并且’$id’被视为长度为3的字符串,其中第一个字符是一个美元.