<?php $indexValues = array( null, '0000000000000000000000000000000000000000', '', ); $results = array(); $expected = array(); foreach($indexValues as $indexValue) { $expected[] = $indexValue === null ? '' : $indexValue; $indexValue = $indexValue !== null ?: ''; $results[] = $indexValue; } var_dump($results); var_dump($expected);
You have javascript disabled. You will not be able to edit any code.