需要一个正则表达式来获取php中图像url的宽度和高度

时间:2013-04-17 06:37:05

标签: php regex wordpress

我的图片类

$温度= <img class="alignnone wp-image-6" alt="2166105529_70dd50ef4b_n" src="http://192.168.1.12/wordpress/wp-content/uploads/2013/03/2166105529_70dd50ef4b_n-300x175.jpg" width="180" height="105">

我想从网址中获取宽度和高度,即width="180"height="105"

我已经使用

获得了src的一部分

preg_replace('/<img\s.*?\bsrc="(.*?)".*?>/si', $temp, $matches);

$ matches =它包含像这样的提取的src

http://192.168.1.12/wordpress/wp-content/uploads/2013/03/2166105529_70dd50ef4b_n-300x175.jpg

现在如何使用正则表达式或任何其他方法提取宽度和高度?

3 个答案:

答案 0 :(得分:4)

在php中使用dom类是一种更好的方法。更容易使用。 示例:http://sandbox.onlinephpfunctions.com/code/c6d89fc6e0803ac38a3bc1ea9c61e081c1b71f08

$dom = new DOMDocument();
$dom->loadHTML('<img class="alignnone wp-image-6" alt="2166105529_70dd50ef4b_n" src="http://192.168.1.12/wordpress/wp-content/uploads/2013/03/2166105529_70dd50ef4b_n-300x175.jpg" width="180" height="105">');

$img = $dom->getElementsByTagName('img');

$src= $img->item(0)->getAttribute('src'); 
$width= $img->item(0)->getAttribute('width'); 
$height= $img->item(0)->getAttribute('height'); 

echo $src ."<br/>";
echo $width."<br/>";;
echo $height."<br/>";;

答案 1 :(得分:3)

我更喜欢使用PHP的DOM扩展名,因为它更可靠并且知道如何正确解析HTML,并且了解字符集。

<?php

$temp='<img class="alignnone wp-image-6" alt="2166105529_70dd50ef4b_n" src="http://192.168.1.12/wordpress/wp-content/uploads/2013/03/2166105529_70dd50ef4b_n-300x175.jpg" width="180" height="105">';

$dom = new \DomDocument;
$dom->loadHTML($temp);

$img = $dom->getElementsByTagName('img')->item(0);

// Note: Values are returned as strings, not as numbers
$src = $img->getAttribute('src');
preg_match('/(.+)-([0-9]+)x([0-9]+)\.jpg$/', $src, $matches);

$width = $matches[2];
$height = $matches[3];

答案 2 :(得分:0)

你可以做到

list($height, $width) = explode("x",substr(strrchr( $url , "-" ),1,-4));

如果我误解了你需要从属性中获取它,而不是图像的实际网址,那么

$url= '<img class="alignnone wp-image-6" alt="2166105529_70dd50ef4b_n" src="http://192.168.1.12/wordpress/wp-content/uploads/2013/03/2166105529_70dd50ef4b_n-300x175.jpg" width="180" height="105">';

echo substr(strstr( $url , "width" ),0,-1);

将回显

width="180" height="105"