Webmaster общности: Predpriemach.com | SearchEngines.bg

    BBCode пример с array и str_replace

    Автор: DJCharge

    <html>
    <head>
    <title>BBCode пример с array и str_replace</title>
    <meta http-equiv="content-type" content="text/html; charset=windows-1251">
    <style type="text/css">
    body { font-family: verdana; font-size: 11px; color: #333333; }
    div.code { width: 450px; margin: 15px; padding: 3px; border: 1px solid #A80000; color: #F00000; font-family: fixedsys; }
    </style>
    </head>
    
    <body>
    <?php
    $prom = "5 примера: [u]подчертан[/u] [i]наклонен[/i] [s]задраскан[/s] ";
    $bbc1 = array( "[i]", "[/i]", "[u]", "[/u]", "[s]", "[/s]");
    $bbc2 = array( "<i>", "</i>", "<u>", "</u>", "<s>", "</s>");
    echo str_replace($bbc1,$bbc2,$prom);
    ?>
    </body>
    </html>

    Оставете коментар