
PHP
zjwtnt
这个作者很懒,什么都没留下…
展开
-
用iis配置php,安装一步到位!
到http://www.php.net/downloads.php下载PHP 4.4.2 installer [1,110Kb] - 13 Jan 2006(CGI only, MySQL support built-in, packaged as Windows installer to install and configure PHP, and automatically con转载 2006-05-17 22:52:00 · 1076 阅读 · 0 评论 -
常用但又易遗忘的语句(不断更新)
dirname -- 返回路径中的目录部分$path = "/etc/passwd";$file = dirname ($path); // $file is set to "/etc"?> -----------------------------------------basename -- 返回路径中的文件名部分$path = "/home/httpd/html/index.php";$转载 2006-05-21 13:19:00 · 1237 阅读 · 0 评论 -
图像旋转逆时针
//用给定角度旋转图像,以jpeg图像格式为例 function rotate($filename,$degrees){ $img = getimagesize($filename); $mime = $img["mime"];//$img->getImageInfo(); $source = null; switch ($mime) { case 'image/png':$sou原创 2015-09-18 15:29:25 · 933 阅读 · 0 评论