n2es.php 88 B

12345678
  1. <?php
  2. function n2es($val) {
  3. if (is_null($val))
  4. return('');
  5. else
  6. return($val);
  7. }
  8. ?>