“PHP Print Keys of Array” Kode Jawaban

php semua kunci dalam array

<?php
$array = array(
    'fruit1' => 'apple',
    'fruit2' => 'orange',
    'fruit3' => 'grape',
    'fruit4' => 'apple',
    'fruit5' => 'apple');

$keys = array_keys($array);		// return array
$values = array_values($array);	// return array
?>
Strange Shrew

Nilai Kunci Array 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

Cara Mendapatkan Kunci Array di PHP


<?php
$array = array(
    'fruit1' => 'apple',
    'fruit2' => 'orange',
    'fruit3' => 'grape',
    'fruit4' => 'apple',
    'fruit5' => 'apple');

// this cycle echoes all associative array
// key where value equals "apple"
for($i = 0; $i< sizeof($array);$i++){
if (key($array[$i]) == 'apple') {
        echo key($array).'<br />';
    }
    //next($array);
}
?>

Successful Shrike

PHP Print Keys of Array

<?php
/* Using the foreach statement format
to specify just the keys to be printed out: */

$grades = ["Maths" => 90, "Biology" => 70, "English" => 85];
echo "<br>Subjects taken:<br>";
foreach($grades as $sbj => $scr){
	echo $sbj;
    echo "<br>";
  }
?>
Fatimah Sahid

Jawaban yang mirip dengan “PHP Print Keys of Array”

Pertanyaan yang mirip dengan “PHP Print Keys of Array”

Lebih banyak jawaban terkait untuk “PHP Print Keys of Array” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya