<?php $f = array(2 => "hello world\n"); $l = array(3 => "goodbye\n"); function implodeList($v) { echo $v; } $f[2] != '' ? print($f[2]) : implodeList($l[3]); $f[2] = ''; $f[2] != '' ? print($f[2]) : implodeList($l[3]);
You have javascript disabled. You will not be able to edit any code.