MediaWiki  master
mwdoc-filter.php
Go to the documentation of this file.
00001 <?php
00014 $source = file_get_contents( $argv[1] );
00015 $regexp = '#\@var\s+([^\s]+)([^/]+)/\s+(var|public|protected|private)\s+(\$[^\s;=]+)#';
00016 $replac = '${2} */ ${3} ${1} ${4}';
00017 $source = preg_replace($regexp, $replac, $source);
00018 
00019 echo $source;