标签: 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?
答案 0 :(得分:20)
是
根据php documentation:
如果filename不存在,则创建文件。