本文整理匯總了PHP中general::remove_white方法的典型用法代碼示例。如果您正苦於以下問題:PHP general::remove_white方法的具體用法?PHP general::remove_white怎麽用?PHP general::remove_white使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類general
的用法示例。
在下文中一共展示了general::remove_white方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: str_replace
$folder = $cfg['media'];
$path = $folder . $file;
$path = $f3->fixslashes($path);
$path = str_replace("//", "/", $path);
//test_string($path);
$mime = mime_content_type($path);
if ($mime == "application/pdf") {
$thumb = DIRECTORY_SEPARATOR . str_replace(".pdf", "_thumb.png", $file);
//test_array($thumb);
if (!file_exists($folder . $thumb) && file_exists($folder . $file)) {
$exportPath = $folder . $thumb;
$res = "96";
$pdf = $folder . $file;
$str = "gs -dCOLORSCREEN -dNOPAUSE -box -sDEVICE=png16m -dUseCIEColor -dTextAlphaBits=4 -dFirstPage=1 -dLastPage=1 -dGraphicsAlphaBits=4 -o{$exportPath} -r{$res} {$pdf}";
exec($str);
\general::remove_white($folder . $thumb);
}
$file = DIRECTORY_SEPARATOR . str_replace(".pdf", ".png", $file);
}
//test_array($file);
if ($file) {
$gen = new \general();
$gen->thumbnail($file, $width, $height, $crop, $enlarge);
}
});
$f3->route('GET|POST /logout', function ($f3, $params) use($user) {
session_start();
session_unset();
session_destroy();
session_write_close();
setcookie(session_name(), '', 0, '/');