3v4l.org

run code in 300+ PHP versions simultaneously
<?php $arr=Array ( 0 => Array ( "Title" => "La science des rêves", "Year" => "2006", "Director" => Array ( "Name" => "Michel Gondry", "BirthYear" => "1963", "BirthPlace" => "Versailles, Yvelines, France" ) ), 1 => Array ( "Title" => "Arizona Dream", "Year" => "1992", "Director" => Array ( "Name" => "Emir Kusturica", "BirthYear" => "1954", "BirthPlace" => "Sarajevo, Bosnia and Herzegovina, Yugoslavia" ) ) ); $ck=Array ( 0 => Title, 1 => Director.Name, 2 => Director.BirthYear ); print_r($arr);
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught Error: Undefined constant "Title" in /in/X08BO:35 Stack trace: #0 {main} thrown in /in/X08BO on line 35
Process exited with code 255.
Output for 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33
Warning: Use of undefined constant Title - assumed 'Title' (this will throw an Error in a future version of PHP) in /in/X08BO on line 35 Warning: Use of undefined constant Director - assumed 'Director' (this will throw an Error in a future version of PHP) in /in/X08BO on line 36 Warning: Use of undefined constant Name - assumed 'Name' (this will throw an Error in a future version of PHP) in /in/X08BO on line 36 Warning: Use of undefined constant Director - assumed 'Director' (this will throw an Error in a future version of PHP) in /in/X08BO on line 37 Warning: Use of undefined constant BirthYear - assumed 'BirthYear' (this will throw an Error in a future version of PHP) in /in/X08BO on line 37 Array ( [0] => Array ( [Title] => La science des rêves [Year] => 2006 [Director] => Array ( [Name] => Michel Gondry [BirthYear] => 1963 [BirthPlace] => Versailles, Yvelines, France ) ) [1] => Array ( [Title] => Arizona Dream [Year] => 1992 [Director] => Array ( [Name] => Emir Kusturica [BirthYear] => 1954 [BirthPlace] => Sarajevo, Bosnia and Herzegovina, Yugoslavia ) ) )
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.25
Notice: Use of undefined constant Title - assumed 'Title' in /in/X08BO on line 35 Notice: Use of undefined constant Director - assumed 'Director' in /in/X08BO on line 36 Notice: Use of undefined constant Name - assumed 'Name' in /in/X08BO on line 36 Notice: Use of undefined constant Director - assumed 'Director' in /in/X08BO on line 37 Notice: Use of undefined constant BirthYear - assumed 'BirthYear' in /in/X08BO on line 37 Array ( [0] => Array ( [Title] => La science des rêves [Year] => 2006 [Director] => Array ( [Name] => Michel Gondry [BirthYear] => 1963 [BirthPlace] => Versailles, Yvelines, France ) ) [1] => Array ( [Title] => Arizona Dream [Year] => 1992 [Director] => Array ( [Name] => Emir Kusturica [BirthYear] => 1954 [BirthPlace] => Sarajevo, Bosnia and Herzegovina, Yugoslavia ) ) )
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28
Notice: Use of undefined constant Title - assumed 'Title' in /in/X08BO on line 35 Notice: Use of undefined constant Director - assumed 'Director' in /in/X08BO on line 36 Notice: Use of undefined constant Name - assumed 'Name' in /in/X08BO on line 36 Notice: Use of undefined constant Director - assumed 'Director' in /in/X08BO on line 37 Notice: Use of undefined constant BirthYear - assumed 'BirthYear' in /in/X08BO on line 38 Array ( [0] => Array ( [Title] => La science des rêves [Year] => 2006 [Director] => Array ( [Name] => Michel Gondry [BirthYear] => 1963 [BirthPlace] => Versailles, Yvelines, France ) ) [1] => Array ( [Title] => Arizona Dream [Year] => 1992 [Director] => Array ( [Name] => Emir Kusturica [BirthYear] => 1954 [BirthPlace] => Sarajevo, Bosnia and Herzegovina, Yugoslavia ) ) )

preferences:
268.29 ms | 406 KiB | 371 Q