<?php error_reporting(E_ALL); function setDefault(&$variable, $default) { if (!isset($variable)) { $variable = $default; } } $foo = array( 'foo' => 'oof' ); setDefault($foo['sub']['arrays']['are']['pretty']['cool'], 0); print_r($foo); ?>
You have javascript disabled. You will not be able to edit any code.