Voting

: max(one, five)?
(Example: nine)

The Note You're Voting On

Geoff W
15 years ago
BEWARE using quotes around the second parameter...

If you use quotes eg

chmod (file, "0644");

php will not complain but will do an implicit conversion to an int before running chmod. Unfortunately the implicit conversion doesn't take into account the octal string so you end up with an integer version 644, which is 1204 octal

<< Back to user notes page

To Top