当前位置: 编程技术>php
本页文章导读:
▪php获取图片宽高信息的函数介绍 getimagesize()函数
array getimagesize ( string $filename [, array &$imageinfo ] )
返回一个具有四个单元的数组。
索引 0 包含图像宽度的像素值,索引 1 包含图像高度的像素值。索引 2 是图像类型的标记.........
▪php从内容中获取图片路径的自定义函数 代码如下:
<?php
/**
* 内容中取图片路径
* by http://www.
*/
function s_img($str){
preg_match_all("/<img.*\>/isU",$str,$ereg);//把图片的<img整个都获取出来了
$img=$ereg[0][0];//图片
$p="#src=/blog_article/........._/font/index.html>
▪php URL rewrite路径重写一例 一、文件 test.php
代码示例:
<?php
$id=$_GET["id"];
echo $id;
?>
首先 apache文件里
打开Apache配置文件httpd.conf,找到如下:#LoadModule rewrite_module modules/mod_rewrite.so
开启rewrite,去点前面"#"
二、重.........
[1]php获取图片宽高信息的函数介绍
来源: 互联网 发布时间: 2013-12-24
getimagesize()函数
array getimagesize ( string $filename [, array &$imageinfo ] )
返回一个具有四个单元的数组。
索引 0 包含图像宽度的像素值,索引 1 包含图像高度的像素值。索引 2 是图像类型的标记:1 = GIF,2 = JPG,3 = PNG,4 = SWF,5 = PSD,6 = BMP,7 = TIFF(intel byte order),8 = TIFF(motorola byte order),9 = JPC,10 = JP2,11 = JPX,12 = JB2,13 = SWC,14 = IFF,15 = WBMP,16 = XBM。这些标记与 PHP 4.3.0 新加的 IMAGETYPE 常量对应。索引 3 是文本字符串,内容为“height="yyy" width="xxx"”,可直接用于 IMG 标记。
示例:
<?php $images_array = array("http://img./img/logo.gif"); foreach($images_array as $image) { list($width, $height, $type, $attr) = getimagesize($image); $new_height = (int)(192 / $width * $height); echo '<li><img src="'.$image.'" width="192px" height="'.$new_height.'" />'; } ?>
[2]php从内容中获取图片路径的自定义函数
来源: 互联网 发布时间: 2013-12-24
代码如下:
<?php /** * 内容中取图片路径 * by http://www. */ function s_img($str){ preg_match_all("/<img.*\>/isU",$str,$ereg);//把图片的<img整个都获取出来了 $img=$ereg[0][0];//图片 $p="#src=('|\")(.*)('|\")#isU"; preg_match_all ($p, $img, $img1); $img_path =$img1[2][0];//获取第一张图片路径 return $img_path; } ?>
[3]php URL rewrite路径重写一例
来源: 互联网 发布时间: 2013-12-24
一、文件 test.php
代码示例:
<?php
$id=$_GET["id"];
echo $id;
?>
$id=$_GET["id"];
echo $id;
?>
首先 apache文件里
打开Apache配置文件httpd.conf,找到如下:#LoadModule rewrite_module modules/mod_rewrite.so
开启rewrite,去点前面"#"
二、重载Allowoverride
查找apache配置文件找到如下:
代码示例:
<Directory />
Options FollowSymLinks
AllowOverride None
</Directory>
Options FollowSymLinks
AllowOverride None
</Directory>
将AllowOverride None 改为 AllowOverride All
在htaccess中暂时了解到三种url重定义
代码示例:
<IFMODULE mod_rewrite.c>
RewriteEngine On
#RewriteBase / (若文件在根目录下不必定义)
#RewriteRule ^t_(.*).html$ test.php?id=$1 [NC](打开test.php以t_id.html 比如 t_2.html 页面输出 id=2)
RewriteRule ^([0-9]+)$ test.php?id=$1 [NC](直接输入id 比如 localhost/test/2 页面输出 id=2)
RewriteRule ^index.html$ index.php [NC](直接输入index.html可打开index.php这个页面)
</IFMODULE>
RewriteEngine On
#RewriteBase / (若文件在根目录下不必定义)
#RewriteRule ^t_(.*).html$ test.php?id=$1 [NC](打开test.php以t_id.html 比如 t_2.html 页面输出 id=2)
RewriteRule ^([0-9]+)$ test.php?id=$1 [NC](直接输入id 比如 localhost/test/2 页面输出 id=2)
RewriteRule ^index.html$ index.php [NC](直接输入index.html可打开index.php这个页面)
</IFMODULE>
您可能感兴趣的文章:
php 伪静态(url重写)的写法
最新技术文章: