All pastes #41684 Raw Edit

Unnamed

public php v1 · immutable
#41684 ·published 2006-02-15 01:09 UTC
rendered paste body
function checkfile($attempt, $end, $dir, $default){  foreach(scandir($dir) as $c){    if(strchr($c, $end) == $end){      $files[] = str_replace($end, '', $c);    }  }  if(in_array($attempt, $files)){    return $attempt;  }  return $default;}