3v4l.org

run code in 300+ PHP versions simultaneously
<?php function swift_rgb2hex($rgb,$hash=true) { if($rgb == NULL){ return 'none'; } if($hash) $hex = '#'; $temp = explode('(',$rgb); print_r( $temp); if(!is_array($temp) || count($temp)<=1){ return $rgb; } $rgb = $temp[1]; $temp = explode(')',$rgb); $rgb = $temp[0]; $rgb = explode(',',$rgb); $hex .= str_pad(dechex($rgb[0]), 2, "0", STR_PAD_LEFT); $hex .= str_pad(dechex($rgb[1]), 2, "0", STR_PAD_LEFT); $hex .= str_pad(dechex($rgb[2]), 2, "0", STR_PAD_LEFT); return $hex; } /* echo swift_rgb2hex('rgba(0,0,0)'); echo swift_rgb2hex('rgba(255,255,0)'); echo swift_rgb2hex('boom'); echo swift_rgb2hex('FFFFFF'); */ echo swift_rgb2hex('rgba(0,0,0)');
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => rgba [1] => 0,0,0) ) #000000

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:
43.93 ms | 401 KiB | 8 Q