标签: php
我目前正在尝试将csv中的每个条目都用引号引起来,以输入到SQL Server中。目前,我正在使用此方法:
$the_row = str_replace(",", "','", $the_row); $the_row = "'" . $the_row . "'";
这很好用,只是在每行末尾都保留了最后的引号。解决此问题的最佳方法是什么?