PHP file_get_contents能重命名吗

avatar
作者
筋斗云
阅读量:0

file_get_contents 本身没有提供直接重命名的功能。但是,你可以通过将文件内容读取到一个临时文件中,然后使用 PHP 的文件操作函数(如 rename)将临时文件重命名为目标文件名。以下是一个示例:

<?php $url = 'http://example.com/file.txt'; // 替换为你要读取的文件 URL $target_filename = 'new_file.txt'; // 替换为你想要重命名的目标文件名  // 使用 file_get_contents 读取文件内容 $content = file_get_contents($url);  if ($content === false) {     die('Error: Failed to fetch file content'); }  // 将文件内容写入临时文件 $temp_filename = tempnam(sys_get_temp_dir(), 'file'); file_put_contents($temp_filename, $content);  // 将临时文件重命名为目标文件名 if (!rename($temp_filename, $target_filename)) {     die('Error: Failed to rename temporary file to target file'); }  echo 'File successfully fetched and renamed'; ?> 

请注意,这个示例适用于从远程 URL 读取文件。如果你要读取本地文件,只需将 $url 变量替换为本地文件的路径即可。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!