3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Auth_Model_User { /** * Allowed fields * * @var array */ protected $_fields = array( 'id_acl_user', 'role', 'username', 'email', 'password_changed_at', ); /** * Userdata * * @var array */ protected $_data = array(); public function __construct($data = null) { $this->_data['role'] = 'bar'; } /** * @return array */ public function toArray() { return array_merge($this->_fields, $this->_data); } } $user = new Auth_Model_User(); var_dump($user->toArray());
Output for git.master, git.master_jit, rfc.property-hooks
array(6) { [0]=> string(11) "id_acl_user" [1]=> string(4) "role" [2]=> string(8) "username" [3]=> string(5) "email" [4]=> string(19) "password_changed_at" ["role"]=> string(3) "bar" }

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.94 ms | 401 KiB | 8 Q