3v4l.org

run code in 300+ PHP versions simultaneously
<?php $hexColor = '012'; $hexColor = implode('', array_map(function($color){ return str_repeat($color, 2); }, str_split($hexColor))); echo $hexColor; echo PHP_EOL; echo print_r( array( 'R' => hexdec($color[0] . $color[1]), 'G' => hexdec($color[2] . $color[3]), 'B' => hexdec($color[4] . $color[5]), ) ); list($R, $G, $B) = sscanf($color, '%02x%02x%02x'); echo print_r( array( 'R' => $R, 'G' => $G, 'B' => $B, ) ); echo PHP_EOL;
Output for git.master, git.master_jit
001122 Warning: Undefined variable $color in /in/ekhmf on line 10 Warning: Trying to access array offset on value of type null in /in/ekhmf on line 10 Warning: Undefined variable $color in /in/ekhmf on line 10 Warning: Trying to access array offset on value of type null in /in/ekhmf on line 10 Warning: Undefined variable $color in /in/ekhmf on line 11 Warning: Trying to access array offset on value of type null in /in/ekhmf on line 11 Warning: Undefined variable $color in /in/ekhmf on line 11 Warning: Trying to access array offset on value of type null in /in/ekhmf on line 11 Warning: Undefined variable $color in /in/ekhmf on line 12 Warning: Trying to access array offset on value of type null in /in/ekhmf on line 12 Warning: Undefined variable $color in /in/ekhmf on line 12 Warning: Trying to access array offset on value of type null in /in/ekhmf on line 12 Array ( [R] => 0 [G] => 0 [B] => 0 ) 1 Warning: Undefined variable $color in /in/ekhmf on line 15 Deprecated: sscanf(): Passing null to parameter #1 ($string) of type string is deprecated in /in/ekhmf on line 15 Array ( [R] => [G] => [B] => ) 1
Output for rfc.property-hooks
001122 Warning: Undefined variable $color in /in/ekhmf on line 10 Warning: Trying to access array offset on null in /in/ekhmf on line 10 Warning: Undefined variable $color in /in/ekhmf on line 10 Warning: Trying to access array offset on null in /in/ekhmf on line 10 Warning: Undefined variable $color in /in/ekhmf on line 11 Warning: Trying to access array offset on null in /in/ekhmf on line 11 Warning: Undefined variable $color in /in/ekhmf on line 11 Warning: Trying to access array offset on null in /in/ekhmf on line 11 Warning: Undefined variable $color in /in/ekhmf on line 12 Warning: Trying to access array offset on null in /in/ekhmf on line 12 Warning: Undefined variable $color in /in/ekhmf on line 12 Warning: Trying to access array offset on null in /in/ekhmf on line 12 Array ( [R] => 0 [G] => 0 [B] => 0 ) 1 Warning: Undefined variable $color in /in/ekhmf on line 15 Deprecated: sscanf(): Passing null to parameter #1 ($string) of type string is deprecated in /in/ekhmf on line 15 Array ( [R] => [G] => [B] => ) 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.19 ms | 403 KiB | 8 Q