Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
preg_match('#<img class=\"aligncenter wp-image-301\" src=\"(.*)\" alt=\"(.*)\" width=\".*\" height=\".*\">#isU', $html, $matches);
$html = '<img src="1.jpg" alt="alt" />'; preg_match('#<img src=\"(.*)\" alt=\"(.*)\" \/>#isU', $html, $matches); echo '<pre>' . print_r($matches, true);
preg_match('#<img class=\"captcha\" scr=\"(.*)\" alt=\"captcha\" \/>#isU', $html, $matches); echo '<pre>' . print_r($matches, true);