3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = 'abc'; echo $str[TRUE]; // Notice: String offset cast occurred echo $str[NULL]; // Notice: String offset cast occurred echo $str[[]]; // Warning: Illegal offset type $int = 123; echo $int[1]; // no error echo $int[TRUE]; // no error echo $int[[]]; // no error $bool = TRUE; echo $bool[1]; // no error echo $bool[TRUE]; // no error echo $bool[[]]; // no error $null = NULL; echo $null[1]; // no error echo $null[TRUE]; // no error echo $null[[]]; // no error
Output for git.master, git.master_jit, rfc.property-hooks
Warning: String offset cast occurred in /in/vMvD2 on line 5 b Warning: String offset cast occurred in /in/vMvD2 on line 6 a Fatal error: Uncaught TypeError: Cannot access offset of type array on string in /in/vMvD2:7 Stack trace: #0 {main} thrown in /in/vMvD2 on line 7
Process exited with code 255.

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