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
变量替换为本地文件的路径即可。