3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Gotcha { var $x; public function Gotcha($init_value) { $this->x = $init_value; } } echo "<PRE>\n\n"; echo "old PHP 4 style, generates 'deprecated' warnings:\n"; $objs = array(); foreach (array(37, "Wisconsin", 3.14159) as $i) { $a =& new Gotcha($i); $objs[] =& $a; } var_export($objs); echo "\n\n"; echo "new PHP 5 style, ** only change is removal of & in 'new' assignment **:\n"; $objs = array(); foreach (array(37, "Wisconsin", 3.14159) as $i) { $a = new Gotcha($i); $objs[] =& $a; } var_export($objs); echo "\n\n"; echo "php version = " . phpversion() . "\n";
Output for 5.6.28
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.1415899999999999, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.1415899999999999, )), 1 => Gotcha::__set_state(array( 'x' => 3.1415899999999999, )), 2 => Gotcha::__set_state(array( 'x' => 3.1415899999999999, )), ) php version = 5.6.28
Output for 5.6.21
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.21
Output for 5.6.20
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.20
Output for 5.6.19
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.19
Output for 5.6.18
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.18
Output for 5.6.17
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.17
Output for 5.6.16
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.16
Output for 5.6.15
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.15
Output for 5.6.14
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.14
Output for 5.6.13
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.13
Output for 5.6.12
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.12
Output for 5.6.11
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.11
Output for 5.6.10
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.10
Output for 5.6.9
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.9
Output for 5.6.8
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.8
Output for 5.6.7
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.6.7
Output for 5.5.35
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.35
Output for 5.5.34
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.34
Output for 5.5.33
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.33
Output for 5.5.32
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.32
Output for 5.5.31
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.31
Output for 5.5.30
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.30
Output for 5.5.29
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.29
Output for 5.5.28
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.28
Output for 5.5.27
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.27
Output for 5.5.26
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.26
Output for 5.5.25
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.25
Output for 5.5.24
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.5.24
Output for 5.4.45
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.45
Output for 5.4.44
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.44
Output for 5.4.43
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.43
Output for 5.4.42
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.42
Output for 5.4.41
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.41
Output for 5.4.40
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.40
Output for 5.4.39
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.39
Output for 5.4.38
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.38
Output for 5.4.37
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.37
Output for 5.4.36
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.36
Output for 5.4.35
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.35
Output for 5.4.34
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.34
Output for 5.4.32
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.32
Output for 5.4.31
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.31
Output for 5.4.30
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.30
Output for 5.4.29
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.29
Output for 5.4.28
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.28
Output for 5.4.27
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.27
Output for 5.4.26
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.26
Output for 5.4.25
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.25
Output for 5.4.24
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.24
Output for 5.4.23
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.23
Output for 5.4.22
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 1 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), 2 => Gotcha::__set_state(array( 'x' => 3.14158999999999988261834, )), ) php version = 5.4.22
Output for 5.4.21
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.21
Output for 5.4.20
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.20
Output for 5.4.19
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.19
Output for 5.4.18
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.18
Output for 5.4.17
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.17
Output for 5.4.16
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.16
Output for 5.4.15
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.15
Output for 5.4.14
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.14
Output for 5.4.13
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.13
Output for 5.4.12
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.12
Output for 5.4.11
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.11
Output for 5.4.10
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.10
Output for 5.4.9
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.9
Output for 5.4.8
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.8
Output for 5.4.7
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.7
Output for 5.4.6
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.6
Output for 5.4.5
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.5
Output for 5.4.4
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.4
Output for 5.4.3
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.3
Output for 5.4.2
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.2
Output for 5.4.1
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.1
Output for 5.4.0
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.4.0
Output for 5.3.29
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.29
Output for 5.3.28
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.28
Output for 5.3.27
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.27
Output for 5.3.26
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.26
Output for 5.3.25
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.25
Output for 5.3.24
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.24
Output for 5.3.23
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.23
Output for 5.3.22
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.22
Output for 5.3.21
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.21
Output for 5.3.20
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.20
Output for 5.3.19
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.19
Output for 5.3.18
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.18
Output for 5.3.17
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.17
Output for 5.3.16
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.16
Output for 5.3.15
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.15
Output for 5.3.14
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.14
Output for 5.3.13
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.13
Output for 5.3.12
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.12
Output for 5.3.11
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.11
Output for 5.3.10
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.10
Output for 5.3.9
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.9
Output for 5.3.8
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.8
Output for 5.3.7
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.7
Output for 5.3.6
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.6
Output for 5.3.5
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.5
Output for 5.3.4
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.4
Output for 5.3.3
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.3
Output for 5.3.2
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.2
Output for 5.3.1
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.1
Output for 5.3.0
Deprecated: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.3.0
Output for 5.2.17
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.17
Output for 5.2.16
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.16
Output for 5.2.15
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.15
Output for 5.2.14
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.14
Output for 5.2.13
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.13
Output for 5.2.12
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.12
Output for 5.2.11
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.11
Output for 5.2.10
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.10
Output for 5.2.9
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.9
Output for 5.2.8
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.8
Output for 5.2.7
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.7
Output for 5.2.6
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.6
Output for 5.2.5
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.5
Output for 5.2.4
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.4
Output for 5.2.3
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.3
Output for 5.2.2
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.2
Output for 5.2.1
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.1
Output for 5.2.0
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.2.0
Output for 5.1.6
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.1.6
Output for 5.1.5
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.1.5
Output for 5.1.4
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.1.4
Output for 5.1.3
Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.1.3
Output for 5.1.2
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.1.2
Output for 5.1.1
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.1.1
Output for 5.1.0
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => Gotcha::__set_state(array( 'x' => 37, )), 1 => Gotcha::__set_state(array( 'x' => 'Wisconsin', )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => Gotcha::__set_state(array( 'x' => 3.14159, )), 1 => Gotcha::__set_state(array( 'x' => 3.14159, )), 2 => Gotcha::__set_state(array( 'x' => 3.14159, )), ) php version = 5.1.0
Output for 5.0.5
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => class Gotcha { public $x = 37; }, 1 => class Gotcha { public $x = 'Wisconsin'; }, 2 => class Gotcha { public $x = 3.14159; }, ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => class Gotcha { public $x = 3.14159; }, 1 => class Gotcha { public $x = 3.14159; }, 2 => class Gotcha { public $x = 3.14159; }, ) php version = 5.0.5
Output for 5.0.4
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => class Gotcha { public $x = 37; }, 1 => class Gotcha { public $x = 'Wisconsin'; }, 2 => class Gotcha { public $x = 3.14159; }, ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => class Gotcha { public $x = 3.14159; }, 1 => class Gotcha { public $x = 3.14159; }, 2 => class Gotcha { public $x = 3.14159; }, ) php version = 5.0.4
Output for 5.0.3
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => class Gotcha { public $x = 37; }, 1 => class Gotcha { public $x = 'Wisconsin'; }, 2 => class Gotcha { public $x = 3.14159; }, ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => class Gotcha { public $x = 3.14159; }, 1 => class Gotcha { public $x = 3.14159; }, 2 => class Gotcha { public $x = 3.14159; }, ) php version = 5.0.3
Output for 5.0.2
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => class Gotcha { public $x = 37; }, 1 => class Gotcha { public $x = 'Wisconsin'; }, 2 => class Gotcha { public $x = 3.14159; }, ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => class Gotcha { public $x = 3.14159; }, 1 => class Gotcha { public $x = 3.14159; }, 2 => class Gotcha { public $x = 3.14159; }, ) php version = 5.0.2
Output for 5.0.1
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => class Gotcha { public $x = 37; }, 1 => class Gotcha { public $x = 'Wisconsin'; }, 2 => class Gotcha { public $x = 3.14159; }, ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => class Gotcha { public $x = 3.14159; }, 1 => class Gotcha { public $x = 3.14159; }, 2 => class Gotcha { public $x = 3.14159; }, ) php version = 5.0.1
Output for 5.0.0
Strict Standards: var: Deprecated. Please use the public/private/protected modifiers in /in/7dnnU on line 3 Strict Standards: Assigning the return value of new by reference is deprecated in /in/7dnnU on line 14 <PRE> old PHP 4 style, generates 'deprecated' warnings: array ( 0 => class Gotcha { public $x = 37; }, 1 => class Gotcha { public $x = 'Wisconsin'; }, 2 => class Gotcha { public $x = 3.14159; }, ) new PHP 5 style, ** only change is removal of & in 'new' assignment **: array ( 0 => class Gotcha { public $x = 3.14159; }, 1 => class Gotcha { public $x = 3.14159; }, 2 => class Gotcha { public $x = 3.14159; }, ) php version = 5.0.0
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/7dnnU on line 4
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/7dnnU on line 4
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/7dnnU on line 4
Process exited with code 255.

preferences:
237.18 ms | 1395 KiB | 163 Q