Online Web Code Test | Write and Run


PuStudy.Com Start write and Run your Web Code Online Work, PuStudy.Com Provide Online Web Editor, Every Language Code Work in this Editor, Editor Work Like as - Html, Php, Css, Bootstrap, Asp, jQuery Etc.

<?php
    //first example
    $array = array('1', '2', '3', '4', '5', '6', '7', '8', '9', '10');    
    echo join('
', $array); //first example (result) /* 1 2 3 4 5 6 7 8 9 10 */ //second example $arr[] = '1a'; $arr[] = '2b'; $arr[] = '3c'; $arr[] = '4d'; $arr[] = '5e'; $arr[] = '6f'; $arr[] = '7g'; $arr[] = '8h'; $arr[] = '9i'; $arr[] = '10j'; echo join('
', $arr); //second example (result) /* 1a 2b 3c 4d 5e 6f 7g 8h 9i 10j */ ?>