Answers for "php function filter"

PHP
-2

array_filter php

$var = [
  'first' => 'one',
  'second' => null,
  'third' => 'three',
];


$filteredArray = array_filter($var);
// output: ['first'=>'one,'third'=>'three']
Posted by: Guest on May-03-2021

Browse Popular Code Answers by Language