update page now

Voting

: six minus four?
(Example: nine)

The Note You're Voting On

raat1979 at gmail dot com
7 years ago
shortest base64url_decode (correct version)

<?php
    function base64_urldecode($data){
        return base64_decode(strtr($data,'-_','+/').str_repeat("=", -strlen($data) & 3));
}
?>

<< Back to user notes page

To Top