07/08/24 22:34:33
>>99
1. 読まない
2. 調べない
3. 試さない
4. 理解力が足りない
5. 人を利用することしか頭にない
ちょっとは自分で考えろよ。応用力の無いヤツには何を教えても無駄。
もうこれが最後だからな。
<?php
$html = '<body>
<a href="img/unko.jpg" alt="kuso\'s image">"うんこ"の画像</a>
</body>
';
$result = '';
while (preg_match('/^(.*?)(<.+?>)(.*)$/s', $html, $s)) {
$result .= $s[1];
$tag = $s[2];
$html = $s[3];
$tag = preg_replace('/="(.+?)"/', '=$1', $tag);
$tag = preg_replace("/='(.+?)'/", '=$1', $tag);
$result .= $tag;
}
echo $result;
?>