“imploser le tableau dans la chaîne php” Réponses codées

PHP Implose

$arr = array('Hello','World!','Beautiful','Day!');
echo implode(" ",$arr);
// Outputs: 'Hello World! Beautiful Day!'
Dangerous Dove

PHP Implose Break

$values = array_map('array_pop', $array);
$imploded = implode(',', $values);
Mobile Star

PHP Implose

$colors = array("red","blue","green");
$colorsCSV= "'".implode("','",$colors)."'";
//$colorsCSV: 'red','blue','green'
Friendly Hawk

imploser le tableau dans la chaîne php

<?php
  $array = ['Waiting', 'for', 'Avenger', 'End', 'Game'];
  echo implode(" ",$array); // Result: Waiting for Avenger End Game
?>

<?php
  $array = ['A', 'v', 'e', 'n', 'g', 'e', 'r'];
  echo implode($array); // Avenger 
?>

<?php
  $array = [1, false, 0, true, NULL, 0.07];
  echo implode(', ', $array); // 1, , 0, 1, , 0.07 
?>

<?php
  $movies = [
    'comedy' => ['In the Loop', '21 Jump Street', 'Elf ', 'This Is the End'],
    'war' => ['Dunkirk', 'Hacksaw Ridge', 'Inglourious Basterds', 'Defiance'],
    'action' => ['La La Land', 'The Notebook', 'About Time', 'Twilight'],
    'sci fi' => ['Interstellar', 'Annihilation', 'Gravity', 'Inception'],
  ];
  echo implode(', ', $movies); // Array, Array, Array, Array 
?>
Wandering Wolverine

Réponses similaires à “imploser le tableau dans la chaîne php”

Questions similaires à “imploser le tableau dans la chaîne php”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code