예제 #1
0
파일: Fun.php 프로젝트: harshaccent/kurry
 public static function filestodownload_link($inp)
 {
     $files = Fun::myexplode(",", $inp);
     $outp = array();
     foreach ($files as $ind => $val) {
         $outp[] = "<a href='{$val}' >File " . ($ind + 1) . "</a>";
     }
     return $outp;
 }