file_put_content如果不存在则创建文件?

时间:2014-04-24 11:58:26

标签: php

$html = file_get_contents('http://www.test.com);
$file = '/Applications/MAMP/htdocs/test.html';
file_put_contents($file,$html);

当文件不存在时,file_put_content是否会创建文件test.html?

1 个答案:

答案 0 :(得分:20)

根据php documentation

  

如果filename不存在,则创建文件。