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

📄 gddetector.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php			/** 	 * \ingroup Gallery_resizer	 *	 * Implementes the detectGd method which returns true if the GD library	 * is available in this host	 *	 */	class GdDetector 	{		function GdDectector()		{					}				/**		 * Returns true if the GD library is available in this host, or false		 * otherwise.		 *		 * @return true if available or false otherwise		 * @static		 */		function detectGd()		{			// the imagecreate() method has been in GD since PHP 3 so it's			// a safe bet to consider GD available if this function is available			return( function_exists( "imagecreate" ));		}	}

⌨️ 快捷键说明

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