fork download
  1. <?Php
  2. (
  3. 'FrontEnd' => Array
  4. (
  5. 'HTML'
  6. , 'CSS'
  7. , 'JS' => Array
  8. (
  9. 'Vuejs' => Array
  10. (
  11. 2 => 'v2'
  12. , 'v3'
  13. )
  14. , 'Reactjs'
  15. , 'Svelte'
  16. )
  17. )
  18.  
  19. , 'BackEnd' => Array
  20. (
  21. ' PHP'
  22. , 'MySQL'
  23. , 'Security'
  24. )
  25.  
  26. , ' Git'
  27. , 'Github'
  28.  
  29. )
  30. );
Success #stdin #stdout 0.04s 25784KB
stdin
Standard input is empty
stdout
Array
(
    [FrontEnd] => Array
        (
            [0] => HTML
            [1] => CSS
            [JS] => Array
                (
                    [Vuejs] => Array
                        (
                            [2] => v2
                            [3] => v3
                        )

                    [0] => Reactjs
                    [1] => Svelte
                )

        )

    [BackEnd] => Array
        (
            [0] =>  PHP
            [1] => MySQL
            [2] => Security
        )

    [0] =>  Git
    [1] => Github
)