You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is about values like 0755 or 0664 which are used for file permissions. When using DIR_PERM=0755 then env() will convert this to int(755) but the correct value should have been int(493).
This is about values like
0755
or0664
which are used for file permissions. When usingDIR_PERM=0755
thenenv()
will convert this toint(755)
but the correct value should have beenint(493)
.To support this a
self::CONVERT_OCTAL
option is probably needed which can be used to run before the current integer conversion. https://www.php.net/manual/de/function.octdec.php#85170 might be helpful.Thoughts?
The text was updated successfully, but these errors were encountered: