PHP下载不适用于移动设备,但它完全适用于PC .. 这是我的代码......
session_start();
$path = 'editedPic/';
$image = $_REQUEST['image'];
$mainimage = $path.$image;
$username = $_SESSION['username'];
$string = preg_replace('/\s+/', '', $username);
header('Content-Type: image/jpg');
header('Content-Disposition: attachment; filename="'.$string.'.jpg"');
readfile($mainimage);