rawurlencode yani < içinde entites değiştirin

0 Cevap php

Ben aşağıdaki kodu var

<a href="snippet:add?code=<?php echo rawurlencode($snippet->snippet_content); ?>Save snippet</a>

nerede

'$snippet = &lt;a rel=&quot;nofollow&quot; href=&quot;http://digg.com/submit?phase=2&amp;url=&lt;?php the_permalink(); ?&gt;&quot; title=&quot;Submit this post to Digg&quot;&gt;Digg this!&lt;/a&gt;'

Nasıl rawurlencode yerine "& lt" için alabilir; bir "<" için?

Şimdiden çok teşekkürler

soymak

güncellendi

kullanma

<?php echo rawurlencode(html_entity_decode($snippet->snippet_content)); ?>

Aşağıda posterler tarafından önerilen, teşekkür değişen ve lt giderir; için "<" ama ekler pasajı boyunca \

<a rel=\"nofollow\" href=\"http://delicious.com/post?url=<?php the_permalink(); ?>&title=<?php echo urlencode(get_the_title($id)); ?>\" title=\"Bookmark this post at Delicious\">Bookmark at Delicious</a>

Ben arayan kulüpler çıkış ters eğik çizgiler olmadan lutfen

<a rel="nofollow" href="http://delicious.com/post?url=<?php the_permalink(); ?>&title=<?php echo urlencode(get_the_title($id)); ?>" title="Bookmark this post at Delicious">Bookmark at Delicious</a>

cheers soymak

SABİT

Yayınlanmıştır herkese teşekkür ederim!

<?php echo rawurlencode(htmlspecialchars_decode(stripslashes($snippet->snippet_content))); ?>

bir çekicilik işleri,

many thanks soymak

0 Cevap