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

📄 image.php

📁 a short sketch about linux syntex lines.
💻 PHP
字号:
<?php
/*
*/
class Image{
	private static $image;
	public static function reSize($filename, $width, $height){
		if (is_resource(self::$image)===false){
			$config = $GLOBALS['config'];
			self::$image = new Easy_Image();
			self::$image->dir = ROOT;
			self::$image->basedir = $config['basedir'];
			self::$image->imageresize = $config['iamgeresize'];
		return self::$image->reSize($filename, $width, $height);
		}
	}
}?>

⌨️ 快捷键说明

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