Skip to content

Instantly share code, notes, and snippets.

@softsolution
Last active July 12, 2016 03:56
Show Gist options
  • Save softsolution/d1cc4b6fc1328aefdd152d442ad2c256 to your computer and use it in GitHub Desktop.
Save softsolution/d1cc4b6fc1328aefdd152d442ad2c256 to your computer and use it in GitHub Desktop.
Регулярки
<?php
$str = "http://s020.radikal.ru/i712/1301/36/46bac5e8ee92.jpg";
//$str = "/images/photos/medium/0e172b5bd5348d34141788846ad80aae.jpg";
if(preg_match('(http://.*?.(jpg|png|gif))', $str)){
echo "true";
} else {
echo "false";
}
//поиск и замена
preg_match_all("/<a[^<>]+?><span>(.*?)<\/span><\/a>/uis",$str,$ok);
for ($j=0; $j<count($ok[1]); $j++) {
echo "<li>".$ok[1][$j]."</li>";
}
//Замена ссылки на ее анкор
$str = '<li><a href="/goods/index.html">Продукция</a></li><li><a href="/basket/index.html">Моя корзина</a></li>';
$str1 = preg_replace('/<a(.+?)href="(.+?)"(.*?)>(.+?)<\/a>/i', '<a$1href="#"$3>$4</a>', $str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment