I have used below code for showing jar file preview,its working fine but when some jar file has not icon file then it not showing default icon
PHP Code:
<?
include('vvv.php');
$file = $_GET["lf"];
$q = array("icon.png","ico.png","i.png","icono.png","Icon.png","Ico.png","I.png","Icono.png","ICON.png","ICO.png","I.png","ICONO.png","ICON.PNG","ICO.PNG","I.PNG","ICONO.PNG","icons/icon.png","icons/ico.png","icons/i.png","icons/icono.png","i","I");
$zip = new PclZip($file);
$ar = $zip->extract(PCLZIP_OPT_BY_NAME,$q,PCLZIP_OPT_EXTRACT_IN_OUTPUT);
if(!empty($ar)) {Header("Content-type: image/png");
}
else {
$cz=file_get_contents(MAI_TPL."ext/jar.png");
header("Content-type: image/png");
echo $cz;
}
?>
Comment