// 保存网络图片(图片url)到本地
public function saveImage($url=""){
$url = "https://www.gde.cc/common/static/res_gde/gde_img/banner3.jpg";//图片url
$file = file_get_contents($url);
$img_arr = explode('.', $url);
$type = $img_arr[count($img_arr)-1];// 图片后缀
$path = ROOT_PATH . 'public/image/car_image/';
if (!is_dir($path)) {
@mkdir($path);
}
// 写入保存图片,指定位位和文件名
file_put_contents($path . 'text_' . md5(time()) . '.' . $type, $file);
}
12-17
07-29
428
