我的形象课
$温度=<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">
我想从 url 中获取宽度和高度,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
现在如何使用正则表达式或任何其他也接受的方法来提取宽度和高度?