каждая несчастливая семья несчастлива по-своему
/src=[\\"']+((.*\/\/|)([\/a-z0-9_%-\.]+\.(jpg|png|gif))(.*?))[\\"']+/gi
$re = '/src=[\\\\"\']+((.*\/\/|)([\/a-z0-9_%-\.]+\.(jpg|png|gif))(.*?))[\\\\"\']+/i';
$str = '<div style=\\"text-align: center;\\"><img src=\\"http://sitename.ru/uploads/posts/2016-09/1473963049_1.jpg\\" alt=\\"\\" border=\\"0\\" style=\\"margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;\\" /><span style=\\"letter-spacing: 0px; line-height: 1.5em; word-spacing: 1.1px; font-family: \\">У каждой работы — и в офисе, и во фрилансе — есть свои прелести и недостатки. А вот какие — это и покажут следующие иллюстрации. </span>';
preg_match_all($re, $str, $matches);
// Print the entire match result
print_r($matches);
$pattern = "#\<img src=\"([^\s]+)\" #";
preg_match_all($pattern, $string, $matches);
echo "<pre>";
print_r($matches[1]);
!($row['id_news'] == "9999" || $row['id_news'] == "0")
$('.sub-menu_lvl1 li a').mouseenter(function() {
var classes = ['one','two','three','four','five']
$('.sub-menu_lvl2').removeClass('info-visible');
$('.sub-menu_lvl2.' + classes[ $(this).closest('li').index()]).addClass('info-visible');
});
<a href="#" data-visibleclass="one">...</a>
и тогда:$('.sub-menu_lvl1 li a').mouseenter(function() {
$('.sub-menu_lvl2').removeClass('info-visible');
$('.sub-menu_lvl2.' + $(this).data('visibleclass')).addClass('info-visible');
});