PHP 8.4.24 Released!

Voting

: min(nine, eight)?
(Example: nine)

The Note You're Voting On

divinity76 at gmail dot com
4 years ago
if someone is looking for a getlocale(), 

<?php
if(!function_exists("getlocale")){
    function getlocale(int $category)/*:string|false*/{
        return setlocale($category, 0);
    }
}
?>

<< Back to user notes page

To Top