update page now

Voting

: nine plus zero?
(Example: nine)

The Note You're Voting On

Andreas Bur (andreas dot buro at gmail dot com)
16 years ago
For getting a substring of UTF-8 characters, I highly recommend mb_substr

<?php
        $utf8string = "cakeæøå";

        echo substr($utf8string,0,5);
        // output cake#
        echo mb_substr($utf8string,0,5,'UTF-8');
        //output cakeæ
?>

<< Back to user notes page

To Top