“PHP array cetak” Kode Jawaban

PHP array cetak

<?php
$a = array ('a' => 'apple', 'b' => 'banana', 'c' => array ('x', 'y', 'z'));
echo "<pre>";
print_r ($a);
echo "</pre>";
?>
  
Output:

Array
(
    [a] => apple
    [b] => banana
    [c] => Array
        (
            [0] => x
            [1] => y
            [2] => z
        )
)
Ankur

PHP Echo Array

function echo_arr($arr){
        for ($i=0; $i < count($arr); $i++) { 
                echo $arr[$i];
            }
        }

echo_arr($your_array_here);
Night

array cetak php

// raw array output
print_r($arr);

// the above well-formatted
echo '<pre>'; print_r($array); echo '</pre>';

// more details like datatype and length
var_dump($arr);

// output that PHP understands
var_export($arr);

// by foreach loop
foreach($arr as $key=>$value)
  echo $key, '=>', $value;	// $value must be convertible to string
TechNyquist

Cetak item array dalam php

<?php $data = array('a'=>'apple','b'=>'banana','c'=>'orange');?>
<pre><?php print_r($data); ?></pre>
Enchanting Echidna

PHP Echo Array

foreach($results as $result) {
	echo $result . '<br>';
}
Soulless Creature

PHP array cetak

foreach( $arrayName as $variableName ) {
    // action to perform
}
Masraga Setiawan

Jawaban yang mirip dengan “PHP array cetak”

Pertanyaan yang mirip dengan “PHP array cetak”

Lebih banyak jawaban terkait untuk “PHP array cetak” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya