web-dev-qa-db-fra.com

Comment couper les espaces blancs des valeurs de tableau en php

J'ai un tableau comme suit

$fruit = array('  Apple ','banana   ', ' , ',     '            cranberry ');

Je veux un tableau qui contient les valeurs sans les espaces blancs des deux côtés, mais il peut contenir des valeurs vides

$fruit = array('Apple','banana', ',', 'cranberry');
164
n92

array_map et trim peut faire le travail

$trimmed_array=array_map('trim',$fruit);
print_r($trimmed_array);
421
Shakti Singh

array_walk() peut être utilisé avec trim() pour couper un tableau

<?php
function trim_value(&$value) 
{ 
    $value = trim($value); 
}

$fruit = array('Apple','banana ', ' cranberry ');
var_dump($fruit);

array_walk($fruit, 'trim_value');
var_dump($fruit);

?>

Voir 2e exemple à http://www.php.net/manual/en/function.trim.php

7
Shiv Kumar Sah

Si le tableau est multidimensionnel, cela fonctionnera très bien:

//trims empty spaces in array elements (recursively trim multidimesional arrays)
function trimData($data){
   if($data == null)
       return null;

   if(is_array($data)){
       return array_map('trimData', $data);
   }else return trim($data);
}

un exemple de test est comme ceci:

$arr=[" aaa ", " b  ", "m    ", ["  .e  ", "    12 3", "9 0    0 0   "]];
print_r(trimData($arr));
//RESULT
//Array ( [0] => aaa [1] => b [2] => m [3] => Array ( [0] => .e [1] => 12 3 [2] => 9 0 0 0 ) )
2
Elnoor

Si vous voulez rogner et imprimer un tableau à une dimension ou la dimension la plus profonde d'un tableau à plusieurs dimensions, vous devez utiliser:

foreach($array as $key => $value)
{
    $array[$key] = trim($value);
    print("-");
    print($array[$key]);
    print("-");
    print("<br>");
}

Si vous voulez couper mais ne voulez pas imprimer un tableau à une dimension ou la dimension la plus profonde du tableau à plusieurs dimensions, vous devez utiliser:

$array = array_map('trim', $array);
2
Branimir Viljevac
$fruit= array_map('trim', $fruit);
0
Shiv Kumar Sah

array_map('trim', $data) convertirait tous les sous-réseaux en null. S'il est nécessaire de couper les espaces uniquement pour les chaînes et de laisser les autres types tels quels, vous pouvez utiliser:

$data = array_map(
    function ($item) {
        return is_string($item) ? trim($item) : $item;
    },
    $data
);
0
Aistis

J'ai eu du mal avec les réponses existantes lors de l'utilisation de tableaux multidimensionnels. Cette solution fonctionne pour moi.

if (is_array($array)) {
    foreach ($array as $key => $val) {
        $array[$key] = trim($val);
    }
}
0
Goose
function generateRandomString($length = 10) {
    $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ';
    $charactersLength = strlen($characters);
    $randomString = '';
    for ($i = 0; $i < $length; $i++) {
        $randomString .= $characters[Rand(0, $charactersLength - 1)];
    }
    return $randomString;
}

function generateRandomSpaces() {
    $output = '';
    $i = Rand(1, 10);
    for ($j = 0; $j <= $i; $j++) {
        $output .= " ";
    }   

    return $output;
}

// Generating an array to test
$array = [];
for ($i = 0; $i <= 1000; $i++) {
    $array[] = generateRandomSpaces() . generateRandomString(10) . generateRandomSpaces(); 
}

// ARRAY MAP
$start = microtime(true);
for ($i = 0; $i < 100000; $i++) {
    $trimmed_array=array_map('trim',$array);
}
$time = (microtime(true) - $start);
echo "Array map: " . $time . " seconds\n";

// ARRAY WALK
$start = microtime(true);
for ($i = 0; $i < 100000; $i++) {
    array_walk($array, 'trim');
}
$time = (microtime(true) - $start);
echo "Array walk    : " . $time . " seconds\n"; 

// FOREACH
$start = microtime(true);
for ($i = 0; $i < 100000; $i++) {
    foreach ($array as $index => $elem) {
        $array[$index] = trim($elem);
    }
}
$time = (microtime(true) - $start);
echo "Foreach: " . $time . " seconds\n";

// FOR
$start = microtime(true);
for ($i = 0; $i < 100000; $i++) {
    for ($j = 0; $j < count($array) - 1; $j++) { 
        $array[$j] = trim($array[$j]);
    }
}
$time = (microtime(true) - $start);
echo "For: " . $time . " seconds\n";

La sortie du code ci-dessus est:

Carte matricielle: 8.6775720119476 secondes
Matrice à pied: 10.423238992691 secondes 
Foreach: 7.3502039909363 secondes 
Pour: 9,8266389369965 secondes

Ces valeurs peuvent bien sûr changer, mais je dirais que foreach est la meilleure option.

0
Jesús

Coupez dans array_map si vous avez le type NULL.

Meilleure façon de le faire:

$result = array_map(function($v){ 
  return is_string($v)?trim($v):$v; 
}, $array);
0
Piotr Nowak

Solution anti-multidimensionnelle:

array_walk_recursive($array, function(&$arrValue, $arrKey){ $arrValue = trim($arrValue);});
0
Xenox