Illuminate/Support

From WoozleCodes
Jump to navigation Jump to search
Illuminate\Support namespace

Namespaces

  • <phptag>

$sNS="Illuminate\Support\Facades";

 $arFP = explode('\\',$sNS);
 $sFP = NULL;
 foreach($arFP as $sSeg) {
   if (!is_null($sFP)) {
     $sFP .= '/';
   }
   $sFP .= $sSeg;
 }

echo "$sNS"; </phptag>