lookjapan.COM - IRC ve mIRC dünyasının forumu!

lookjapan.COM - IRC ve mIRC dünyasının forumu! (http://www.lookjapan.com/index.php)
-   PHP Dersleri (http://www.lookjapan.com/forumdisplay.php?f=301)
-   -   Strip_tags kullanımı (http://www.lookjapan.com/showthread.php?t=3388)

Entrance 10 Nisan 2016 14:32

Strip_tags kullanımı
 
Strip_tags komutu html kodlarından arınmanızı, sağlar.

Kod:

<?php
$kod = "<b>Entrance<b>";
echo $kod;
?>

Yukarıdaki kodun çıktısı Entrance şeklinde bold(kalın) olarak gösterilecektir.


Kod:

<?php
$kod = "<b>Entrance<b>";
$yenikod = strip_tags($kod);
echo $yenikod;
?>

Bu kodun çıktısıysa, Entrance şeklinde görünecektir.


İyi forumlar.. ^^


All times are GMT +3. The time now is 14:02.

Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.