我只是想复制一些图像文件并将它们存储在一个文件夹中......我的代码似乎适用于 txt 文档但是当我想复制其他东西时它不起作用:(
<?php
$ImageLocation = $_POST["ImageLocation"];
//$ImageLocation = '/xampp/htdocs/cw/mysql/images/test.txt';
$ext = (new SplFileInfo($ImageLocation))->getExtension();
$newFile = "/xampp/htdocs/cw/mysql/images/$ProductName.$ext";
if (!copy($ImageLocation, $newFile)) {
echo "failed to copy $file...\n";
}
?>
如果有人可以提供帮助,那将非常方便,ta。