Print array elements recursively

3 thoughts on “Print array elements recursively”

  1. [code]
    āĻāĻ‡āĻŸāĻž āĻĻāĻŋāĻ¯āĻŧāĻž āĻšāĻ¯āĻŧ āĻ¨āĻž ?
    $array = array(
    array(141,151,161),
    2,
    3,
    array(101, 202, 303),
    "php",
    "5"
    );
    print_r($array);
    [/code]

      1. āĻ­āĻžāĻ‡ āĻŦā§āĻāĻŋ āĻ¨āĻžāĻ‡āĨ¤ āĻšā§āĻ¯āĻžāĻŸā§‡ āĻŦā§āĻāĻžāĻ‡ āĻĻāĻŋāĻ¯āĻŧā§‡āĻ¨āĨ¤ āĻ†āĻŽāĻžāĻ° āĻ“āĻ‡āĻŸāĻžāĻ° āĻ†āĻ‰āĻŸāĻĒā§āĻŸ āĻ†āĻ¸ā§‡,

        Array
        (
        [0] => Array
        (
        [0] => 141
        [1] => 151
        [2] => 161
        )

        [1] => 2
        [2] => 3
        [3] => Array
        (
        [0] => 101
        [1] => 202
        [2] => 303
        )

        [4] => php
        [5] => 5
        )

Leave a Reply to sarim khan Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.