PHP 8.5.0 Alpha 2 available for testing

Voting

: five plus zero?
(Example: nine)

The Note You're Voting On

coolmic at example dot com
11 years ago
Don't use substr, use bit operator
<?php
decoct
(fileperms($file) & 0777); // return "755" for example
?>

If you want to compare permission
<?php
0755
=== (fileperms($file) & 0777);
?>

<< Back to user notes page

To Top