$pic = file_get_contents("http://maps.googleapis.com/maps/api/staticmap?hl=ru¢er=55.6373,34.3276&zoom=6&size=640x135&scale=2");
file_put_contents('/var/www/mysute.ru/img/1.jpg',$pic);
我尝试将地图图像保存在服务器上,但是图像仍然不是我设置的那种错误的语言?
答案 0 :(得分:3)
您必须为服务器中的file_put_contents提供正确的位置..
file_put_contents('<%=request.getContextPath()%>/var/www/mysute.ru/img/1.jpg',$pic);
检查并告诉它,它真的对我有用......