3v4l.org

run code in 300+ PHP versions simultaneously
<?php function dgs_clean( $str ) { return trim(preg_replace('/\s\s+/', ' ', $str)); } function dgs_strlist($array, $keys) { $out = ''; $_k = (is_array($keys))?$keys:array($keys); var_dump($_k); echo "\n"; foreach ($_k as $k => $v) { $key = (is_int($k))?$v:$k; echo "$key\n"; if (isset($array[$key]) && !empty($array[$key])) $out .= ' '.(is_int($k))?$array[$key]:$v; } return dgs_clean($out); } $test = array('name' => 'myInput', 'value' => '123', 'type' => 'text', '_prepend' => '@', 'class' => 'component inline'); echo dgs_strlist($test, array('class', '_prepend' => 'input-prepend'));
Output for git.master, git.master_jit, rfc.property-hooks
array(2) { [0]=> string(5) "class" ["_prepend"]=> string(13) "input-prepend" } class _prepend component inline@

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