PHP: @ ile başlar her ne kelime için benzersiz ID + Sipariş Kimliği ekle

0 Cevap php

I need to add an Order ID + Unique ID for each word what starts with @.


Örneğin ben bir string Bu böyle :

Just @do @it and @do @it.

I preg_replace #(\@)+([^\s]+)#i bu istiyorum:

Just <div id="1+Unique ID">@do</div> <div id="2+Unique ID">@it</div> and <div id="3+Unique ID">@do</div> <div id="4+Unique ID">@it</div>.

0 Cevap