Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
echo preg_quote("aaa<bbb");
書く必要があります:
aaa\<bbb
しかし、私は得る:
aaa\
これが問題を引き起こす唯一の兆候です。
そのままブラウザに表示したい場合は、<pre>タグで囲むことができます。
<pre>
echo '<pre>'.preg_quote("aaa<bbb").'</pre>';
または、htmlspecialchars を使用して<.
<
echo htmlspecialchars(preg_quote("aaa<bbb"));