⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 tpl_icons.php

📁 一款文件上传程序
💻 PHP
字号:
<?php
// This function returns the icon file corresponding to the file type

/* no used anymore, should use the javascript function instead if possible. */
function tpl_myfiles_get_icon ( $extension )
{
    $icons = array
    (
	'default'   => 'file.gif',
	// images
	'jpg'	=> 'images.gif',
	'jpeg'	=> 'images.gif',
	'png'	=> 'png.gif',
	'gif'	=> 'gif.gif',
	// media
	'avi'	=> 'video.gif',
	'wmv'	=> 'video.gif',
	'mpeg'	=> 'video2.gif',
	'mpg'	=> 'video2.gif',
	'mov'	=> 'quicktime.gif',
	'mp3'	=> 'mp3.gif',
	// Archives
	'zip'	=> 'zip.gif',
	'rar'	=> 'zip.gif',
	'tar'	=> 'zip.gif',
	// documents
	'pdf'	=> 'acrobat.gif',
	'ppt'	=> 'powerpoint.gif',
	'txt'	=> 'text.gif',
	'doc'	=> 'word.gif',
	'xls'	=> 'excel.gif',

    );
    return ( isset ( $icons[$extension] ) ? $icons[$extension] : $icons['default'] );
}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -