<?php
$in_text = <<< EOF
тест <img src="http://i26.fastpic.ru/big/2011/0706/7e/aa756f990d0f4d37ebdef2de81e9627e.png" class="irc_mi" style="margin-top: 0px;" height="393" width="300">
текст <img src="http://files.books.ru/pic/713001-714000/713161/713161_3.jpg" class="irc_mi" style="margin-top: 0px;" height="393" width="298">
текст
EOF;
$pattern='/<img.*?src=\"(.*?)\"/';
preg_match_all($pattern, $in_text, $matches);
print_r($matches);
?>