Horje
print array php Code Example
print 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
        )
)
Source: www.php.net
php echo array
function echo_arr($arr){
        for ($i=0; $i < count($arr); $i++) { 
                echo $arr[$i];
            }
        }

echo_arr($your_array_here);
php print array
// 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
print array items in php
<?php $data = array('a'=>'apple','b'=>'banana','c'=>'orange');?>
<pre><?php print_r($data); ?></pre>
php echo array
foreach($results as $result) {
	echo $result . '<br>';
}
print array php
foreach( $arrayName as $variableName ) {
    // action to perform
}




Php

Related
string to uppercase laravel Code Example string to uppercase laravel Code Example
laravel check if object empty Code Example laravel check if object empty Code Example
how get last item in foreach in laravel Code Example how get last item in foreach in laravel Code Example
php string cut first x characters Code Example php string cut first x characters Code Example
php cut off first x characters Code Example php cut off first x characters Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7