您當(dāng)前所在位置:
首頁(yè) →
網(wǎng)絡(luò)編程 →
PHP編程 →
PHP下一個(gè)非常全面獲取圖象信息的函數(shù)
PHP下一個(gè)非常全面獲取圖象信息的函數(shù)
時(shí)間:2015-06-28 00:00:00
來源:IT貓撲網(wǎng)
作者:網(wǎng)管聯(lián)盟
我要評(píng)論(0)
- 一個(gè)全面獲取圖象信息的函數(shù)getimageinfo(),功能非常不錯(cuò)的。
CODE:
function getimageinfo(img) { //img為圖象文件絕對(duì)路徑
img_info = getimagesize(img);
switch (img_info[2]) {
case 1:
imgtype = "gif";
break;
case 2:
imgtype = "jpg";
break;
case 3:
imgtype = "png";
break;
}
img_type = imgtype."圖像";
img_size = ceil(filesize(img)/1000)."k"; //獲取文件大小
new_img_info = array (
"width"=>img_info[0],
"height"=>img_info[1],
"type"=>img_type
"size"=>img_size
}
return new_img_info;
}
?>關(guān)鍵詞標(biāo)簽:PHP
相關(guān)閱讀
熱門文章
plsql developer怎么連接數(shù)據(jù)庫(kù)-plsql developer連接數(shù)據(jù)庫(kù)方法
2021年最好用的10款php開發(fā)工具推薦
php利用淘寶IP庫(kù)獲取用戶ip地理位置
在 PHP 中使用命令行工具
人氣排行
詳解ucenter原理及第三方應(yīng)用程序整合思路、方法
plsql developer怎么連接數(shù)據(jù)庫(kù)-plsql developer連接數(shù)據(jù)庫(kù)方法
PHP中防止SQL注入攻擊
PHP會(huì)話Session的具體使用方法解析
PHP運(yùn)行出現(xiàn)Notice : Use of undefined constant 的解決辦法
PHP如何清空mySQL數(shù)據(jù)庫(kù)
CakePHP程序員必須知道的21條技巧
PHP采集圖片實(shí)例(PHP采集)