Skip to content

Instantly share code, notes, and snippets.

@webag
Created July 27, 2017 08:13
Show Gist options
  • Save webag/bef3a2a2260c7c4d44cb56e6b8522b31 to your computer and use it in GitHub Desktop.
Save webag/bef3a2a2260c7c4d44cb56e6b8522b31 to your computer and use it in GitHub Desktop.
Php вырезание значения src из строки
<?
$full_link = strval($arItem["PROPERTIES"]["LINK_TO_MAP"]["~VALUE"]);
preg_match('~src="(.*?)"~', $full_link, $matches);
?>
<a href="<?=$matches[1]?>" class="shop__map fancy-map">Схема проезда</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment