Voting

: max(four, four)?
(Example: nine)

The Note You're Voting On

Anonymous
6 years ago
Contrary to what eng.mrkto.com said, getenv() isn't always case-insensitive. On Linux it is not:

<?php
var_dump
(getenv('path')); // bool(false)
var_dump(getenv('Path')); // bool(false)
var_dump(getenv('PATH')); // string(13) "/usr/bin:/bin"

<< Back to user notes page

To Top