“PHP print_r Array” Code-Antworten

Drucken Sie Array PHP

<?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 print_r


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

PHP print_r Array

<?php
$a = "I N D I A";
echo "<pre>";
print_r ($a);
echo "</pre>";
?>
  
Shy Salmon

Ähnliche Antworten wie “PHP print_r Array”

Fragen ähnlich wie “PHP print_r Array”

Weitere verwandte Antworten zu “PHP print_r Array” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen