すべての前に空白を追加する必要があります
<a
まだ空白がない場合は、php を含む文字列に。
したがって、この
hello world <a
そのままでいい
でもこれは
hello wo_Stack Overflow日本語サイト
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.
hello wo 質問する
hello world<a
最初の例と同じになるはずです。
ご意見ありがとうございます。
検索に css をz-index: 99999;、ビデオに css を指定しますz-index: 1
z-index: 99999;
z-index: 1
$text = preg_replace('/(?<!\s)<a/', ' <a', $text);
トリックを行う必要があります
これ(?<!\s)は後ろ向き否定と呼ばれ<aますが、置換される前に空白がない場合のみです。
(?<!\s)