3v4l.org

run code in 300+ PHP versions simultaneously
<?php var_dump(decode_permissions(4)); //echo encode_permissions(["admin" => FALSE, "employee" => FALSE, "data_entry" => FALSE, "accounting" => FALSE, "hr" => FALSE, "contracts" => FALSE, "sub" => FALSE, "intern" => TRUE]); function encode_permissions($perm) { $levels = ["admin" => 0, "employee" => 1, "data_entry" => 2, "accounting" => 3, "hr" => 4, "contracts" => 5, "sub" => 6, "intern" => 7]; $encoded_perm = 0; foreach($perm as $n => $v) if(array_key_exists($n, $levels) && $v != 'false') $encoded_perm += pow(2,$levels[$n]); return $encoded_perm; } function decode_permissions($perm) { $levels = ["admin", "employee", "data_entry", "accounting", "hr", "contracts", "sub",'intern']; $binary = sprintf( "%0d", decbin( $perm )); return $binary = array_reverse(str_split($binary)); //foreach($levels as $i => $l) $output[$l] = $binary[$i]; //return $output; } ?>
Output for git.master, git.master_jit, rfc.property-hooks
array(3) { [0]=> string(1) "0" [1]=> string(1) "0" [2]=> string(1) "1" }

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
48.96 ms | 401 KiB | 8 Q