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
$a = array('size'=>'large', 'number'=>20, 'color'=>'red'); 
print_r($a); 
print_r(array_pad($a, 5, 'foo')); 

// use timestamps as keys 
$b = array(1229600459=>'large', 1229604787=>20, 1229609459=>'red'); 
print_r($b); 
print_r(array_pad($b, 5, 'foo')); 
?>