7 lines
371 B
PHP
7 lines
371 B
PHP
|
<?php
|
||
|
function lazyload ($text) { // ФУНКЦИЯ очистки кода^M
|
||
|
$old = array('<img src=');#Ищем вредное ">",, "<"
|
||
|
$new = array('<img src="/api/img/gray/gif/gray.gif" class="lazy" data-original=');#Меняем на полезное">", , "<"
|
||
|
$text = str_replace($old, $new, $text);#Собсно сама замена =)
|
||
|
return $text; }
|
||
|
?>
|