View Single Post
ישן 31-10-12, 04:32   # 8
MasterNetwork
עסק רשום [?]
 
מיני פרופיל
תאריך הצטרפות: Jun 2007
הודעות: 653

MasterNetwork לא מחובר  

אני בטוח שאפשרי ואני ישמח לשמוע איך לייעל את הקוד הזה:

קוד:
<?php
function checkfile($file){
$ext=explode(".", $file);
for ($i=0; ;$i++){
if (!isset($ext[$i])){ 
$i=$i-1;
return $ext[$i];
break; }
if ($ext[$i]==""){
return "error";
break; }}}



echo checkfile("asdasd.jpg");
?>
  Reply With Quote