$filename='./image/7.jpg';
try{
if(!file_exists($filename)){
throw new Exception('文件不存在');
}
}catch(Exception $e){
echo '异常信息:'.$e->getMessage();
}
try{
if(!file_exists($filename)){
throw new Exception('文件不存在');
}
}catch(Exception $e){
echo '异常信息:'.$e->getMessage();
}
2017-04-06
最新回答 / 慕函数1176964
尝试把$size代码补充完整试试<?php$url="http://pic2.ooopic.com/10/51/63/13b1OOOPIC17.jpg";$filename='a,jpg';file_put_contents($filename,file_get_contents($url));$url='http://wiki.ubuntu.org.cn/images/3/3b/Qref_Edubuntu_Logo.png';$logo='b.png';file_put_contents($log...
2017-04-06
echo gmdate('Y-m-d H:i:s', strtotime('2014-05-01 12:00:01'));
2017-04-04