“PHP -Variablen als Schlüssel in Arrays” Code-Antworten

Array -Schlüsselwert PHP

<?php
$age=array("Peter"=>"35","Ben"=>"37","Joe"=>"43");
foreach($age as $x=>$x_value)
  {
  echo "Key=" . $x . ", Value=" . $x_value;
  echo "<br>";
  }
?>
Lonely Lemur

PHP -Variablen als Schlüssel in Arrays

$id = 1;
$age = 2;    
$sort = "id"; // or "age";
    $Key = $$sort;
$arr = array($Key => 'string');

print_r($arr);
Defiant Dog

Ähnliche Antworten wie “PHP -Variablen als Schlüssel in Arrays”

Fragen ähnlich wie “PHP -Variablen als Schlüssel in Arrays”

Weitere verwandte Antworten zu “PHP -Variablen als Schlüssel in Arrays” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen