<?php function tester( array &$error ) { $error = [ 'text' => 'nothing found' ]; return true; } $e = null; $error = []; $error[] =& $e; call_user_func( 'tester', $error ); var_dump( $error );
You have javascript disabled. You will not be able to edit any code.