How to print a character from multibyte string in PHP

1 Answer

0 votes
<!DOCTYPE html>
<html lang="he">
    <head>
        <meta charset="utf-8">
    </head>

    <body>
        <?php

        $s = 'פיתוח תוכנות';

        $pos = 2;
        $length = 1;

        echo mb_substr($s, $pos, $length);
                

        /*
          run:

          position 6: characters: ת

         */
        ?>

    </body>
</html>

 



answered Mar 16, 2019 by avibootz
...