MediaWiki

From WoozleCodes
Jump to navigation Jump to search

MediaWiki (MW) is kind of the flagship wiki package, although it was not the first. It is also a namespace used within MW's PHP code.

See: MediaWiki category

Namespaces

$sNS="MediaWiki\SpecialPage";

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

echo "$sNS"; </phptag>

$sNS="Wikimedia\ObjectFactory\ObjectFactory";

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

echo "$sNS"; </phptag>