<?php class T { const FlagExec = (1 << 0), FlagWrite = (1 << 1), FlagRead = (1 << 2), FlagAll = (0 | self::FlagExec | self::FlagWrite | self::FlagRead ); } var_dump( T::FlagExec, T::FlagWrite, T::FlagRead, T::FlagAll );
You have javascript disabled. You will not be able to edit any code.