3v4l.org

run code in 300+ PHP versions simultaneously
<?php define('LANGUAGE_NONE', 'und'); $node = new stdClass(); $node->type = 'tv_show'; if ($node->type == 'tv_show' && !empty($node->field_show_type[LANGUAGE_NONE]) && !empty($node->field_show_type[LANGUAGE_NONE][0]['value'])) { echo "1st check: " . var_export($node->field_show_type[LANGUAGE_NONE][0]['value'], TRUE) . "\n"; } else { echo "1st check: field_show_type is empty\n"; } if ($node->type == 'tv_show' && !empty($node->field_show_type[LANGUAGE_NONE][0]['value'])) { echo "2nd check: " . var_export($node->field_show_type[LANGUAGE_NONE][0]['value'], TRUE) . "\n"; } else { echo "2nd check: field_show_type is empty\n"; } $node->field_show_type[LANGUAGE_NONE][0]['value'] = 'test'; if ($node->type == 'tv_show' && !empty($node->field_show_type[LANGUAGE_NONE]) && !empty($node->field_show_type[LANGUAGE_NONE][0]['value'])) { echo "1st check: " . var_export($node->field_show_type[LANGUAGE_NONE][0]['value'], TRUE) . "\n"; } else { echo "1st check: field_show_type is empty\n"; } if ($node->type == 'tv_show' && !empty($node->field_show_type[LANGUAGE_NONE][0]['value'])) { echo "2nd check: " . var_export($node->field_show_type[LANGUAGE_NONE][0]['value'], TRUE) . "\n"; } else { echo "2nd check: field_show_type is empty\n"; }
Output for git.master, git.master_jit, rfc.property-hooks
1st check: field_show_type is empty 2nd check: field_show_type is empty 1st check: 'test' 2nd check: 'test'

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