<?php $inputs = ['a:', 'b:', ['c:'], 'd:']; array_walk_recursive( $inputs, function(&$v) { $v = str_replace(':', ' ', $v); } ); var_export($inputs);
You have javascript disabled. You will not be able to edit any code.