php 缩略图实现函数代码
array getimagesize ( string $filename [, array &$imageinfo ] ) 取得图像大小
resource imagecreatetruecolor ( int $x_size , int $y_size ) 新建一个真彩色图像
resource imagecreatefromjpeg ( string $filename ) 从 JPEG 文件或 URL 新建一图像
bool imagecopyresized ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h ) 拷贝部分图像并调整大小
bool imagejpeg ( resource $image [, string $filename [, int $quality ]] ) 以 JPEG 格式将图像输出到浏览器或文件
resource imagecreatetruecolor ( int $x_size , int $y_size ) 新建一个真彩色图像
resource imagecreatefromjpeg ( string $filename ) 从 JPEG 文件或 URL 新建一图像
bool imagecopyresized ( resource $dst_image , resource $src_image , int $dst_x , int $dst_y , int $src_x , int $src_y , int $dst_w , int $dst_h , int $src_w , int $src_h ) 拷贝部分图像并调整大小
bool imagejpeg ( resource $image [, string $filename [, int $quality ]] ) 以 JPEG 格式将图像输出到浏览器或文件
<?php
/*
Created by <A href="http://www.cnphp.info">http://www.cnphp.info</A>
*/
// 文件及缩放尺寸
//$imgfile = 'smp.jpg';
//$percent = 0.2;
header('Content-type: image/jpeg');
list($width, $height) = getimagesize($imgfile);
$newwidth = $width * $percent;
$newheight = $height * $percent;
$thumb = ImageCreateTrueColor($newwidth,$newheight);
$source = imagecreatefromjpeg($imgfile);
imagecopyresized($thumb, $source, 0, 0, 0, 0, $newwidth, $newheight, $width, $height);
imagejpeg($thumb);
?>
php中对2个数组相加的函数
?phpfunctionarray_add($a,$b){//根据键名获取两个数组的交集$arr=array_intersect_key($a,$b);//遍历第二个数组,如果键名不存在与第一个数组,将数组元素增加到第一
php header Content-Type类型小结
?php$mimetypes=array('ez'='application/andrew-inset','hqx'='application/mac-binhex40','cpt'='application/mac-compactpro','doc'='application/msword','bin'='application/octet-stream','dms'='application/
PHP和Mysqlweb应用开发核心技术 第1部分 Php基础-1 开始了解php
1.1第一个phphtmlheadtitleMyFirstPHPProgram/title/headbody?phpecho"HelloEverybody!";?/body/html附加:phpinfo()函数的用法1.2输入php脚本1.2.1标示php代码段落1.2.2语句和注释/**///##