3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo "Compare non numeric string to string 0: ('str' == '0') = " . ('str' == '0' ? 'true' : 'false') . "\n"; echo "Compare non numeric string to integer 0: ('str' == 0) = " . ('str' == 0 ? 'true' : 'false') . "\n"; echo "Compare evtl. numeric string to string: ('1string' == '1') = " . ('1string' == '1' ? 'true' : 'false') . "\n"; echo "Compare evtl. numeric string to number: ('1string' == 1) = " . ('1string' == 1 ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (same semantic 1): ('1e1' == '10') = " . ('1e1' == '10' ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (same semantic 2): ('1E1' == '10') = " . ('1E1' == '10' ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (same semantic 3): ('1e-1' == '0.1') = " . ('1e-1' == '0.1' ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (same semantic 4): ('1E-1' == '0.1') = " . ('1E-1' == '0.1' ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (same semantic 5): ('+1' == '1') = " . ('+1' == '1' ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (same semantic 6): ('+0' == '-0') = " . ('+0' == '-0' ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (precision 1): ('0.99999999999999994' == '1') = " . ('0.99999999999999994' == '1' ? 'true' : 'false') . "\n"; echo "Compare two numeric strings (precision 2): ('0.99999999999999995' == '1') = " . ('0.99999999999999995' == '1' ? 'true' : 'false') . "\n";
Output for git.master, git.master_jit, rfc.property-hooks
Compare non numeric string to string 0: ('str' == '0') = false Compare non numeric string to integer 0: ('str' == 0) = false Compare evtl. numeric string to string: ('1string' == '1') = false Compare evtl. numeric string to number: ('1string' == 1) = false Compare two numeric strings (same semantic 1): ('1e1' == '10') = true Compare two numeric strings (same semantic 2): ('1E1' == '10') = true Compare two numeric strings (same semantic 3): ('1e-1' == '0.1') = true Compare two numeric strings (same semantic 4): ('1E-1' == '0.1') = true Compare two numeric strings (same semantic 5): ('+1' == '1') = true Compare two numeric strings (same semantic 6): ('+0' == '-0') = true Compare two numeric strings (precision 1): ('0.99999999999999994' == '1') = false Compare two numeric strings (precision 2): ('0.99999999999999995' == '1') = true

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:
44.24 ms | 403 KiB | 8 Q