我试着把
$string .= '(\''.$idURL.'\', \''.$premierP.'\', \''.$prefixe.'\', \''.$matches1['0'].'\', \''.$matches2[0].'\'),\\n';
在file_put_contents($file, $string);
的文件(对于construt sql行)中,但它不起作用,出了什么问题?
答案 0 :(得分:0)
这对我有用。我测试过如下。
<?php
$file = 'test.txt';
$idURL ='test';
$premierP = 'test';
$prefixe = 'test';
$matches1['0'] = 'test';
$matches2[0] = 'test';
$string .= '(\''.$idURL.'\', \''.$premierP.'\', \''.$prefixe.'\', \''.$matches1['0'].'\', \''.$matches2[0].'\'),\\n';
file_put_contents($file, $string);
?>