Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 287 Bytes

README.markdown

File metadata and controls

18 lines (15 loc) · 287 Bytes

Print_r All

function pra(){
     $numargs = func_num_args();
     if ($numargs > 0) {
         $arg_list = func_get_args();    
         foreach($arg_list as $arg) {        
		echo "<pre>";
		print_r($arg);
		echo "</pre>";
         }
     }   
}

pra($var1, $var2,....);