我有几个问题一直在寻找答案。
1:php内存分配。
如果我有一个 1 兆字节的变量$img =file_get_contents('imageUrl');
而我的php内存分配是64兆,100个人同时访问脚本,会不会导致内存分配错误?
2:如何更好地保存来自 url 的图像?我收到内存分配警告...
if ($fileName){
//check to make sure filename is not taken
if(!file_exists("img/".$fileName.$fileExt)){
$image = file_get_contents("someURL".$fileName.$fileExt);
//check to make sure the filesize is not rediculous 8 Megabytes.
if(strlen($image) < (8 * 1048576)){
if(file_put_contents("img/".$fileName.$fileExt, $image)){
usleep((0.25 * 1000000)); //rest 1/4 second
if(!image_resize("img/".$fileName.$fileExt, 202, 202, 1))die('no rezize');
//PRETEND THERE ARE CLOSING CURLY BRACES THANKS