Ben aşağıdaki kodu var
<a href="snippet:add?code=<?php echo rawurlencode($snippet->snippet_content); ?>Save snippet</a>
nerede
'$snippet = <a rel="nofollow" href="http://digg.com/submit?phase=2&url=<?php the_permalink(); ?>" title="Submit this post to Digg">Digg this!</a>'
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