Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
ConFoo 2025

Voting

: four plus four?
(Example: nine)

The Note You're Voting On

kaioker
3 years ago
super simple error code to human readable conversion:

function prettycode($code){
return $code == 0 ? "FATAL" : array_search($code, get_defined_constants(true)['Core']);
}

<< Back to user notes page

To Top