我的PHP代码是:
$query="select company_name from company_names where cik=".$cik;
在印刷上
select company_name from company_names where cik=0001001871
我想得到如下输出
select company_name from company_names where cik='0001001871'
如何在PHP中添加单引号?
最佳答案
简单地说:
$query = "select company_name from company_names where cik = '$cik'";
或:
$query = "select company_name from company_names where cik = '" . $cik . "'";
请注意,要防止SQL注入,请参见以下内容:
Best Way to Prevent SQL Injection
更多信息:
http://php.net/manual/en/language.types.string.php