带有file_put_contents的PHP语法

时间:2014-09-03 12:47:25

标签: php syntax

我试着把

  $string .= '(\''.$idURL.'\', \''.$premierP.'\', \''.$prefixe.'\', \''.$matches1['0'].'\', \''.$matches2[0].'\'),\\n';

file_put_contents($file, $string);的文件(对于construt sql行)中,但它不起作用,出了什么问题?

1 个答案:

答案 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);
?>