Manual:findClasses.php
Appearance
| MediaWiki バージョン: | ≧ 1.37 |
| MediaWiki ファイル: findClasses.php | |
|---|---|
| 場所: | maintenance/ |
| ソース コード: | master • 1.45.1 • 1.44.3 • 1.43.6 |
| クラス: | FindClasses |
詳細
findClasses.php is a maintenance script to finds the files containing classes via the autoloader.
オプション/引数
このスクリプトにはオプション/引数はありません。
使用法
php maintenance/run.php findClasses
MediaWiki バージョン 1.43.6 以前では、メンテナンス スクリプトを
php maintenance/run.php スクリプト名 ではなく php maintenance/スクリプト名.php を使用して実行する必要があります。Finding a single class
Terminal
$ echo "SpecialPage" | php maintenance/run.php findClasses /var/www/html/includes/specialpage/SpecialPage.php
Finding multiple classes through file
classes.txt
HTMLForm
SpecialPage
Html
Xml
Terminal
$ php maintenance/run.php findClasses < classes.txt /var/www/html/includes/htmlform/HTMLForm.php /var/www/html/includes/specialpage/SpecialPage.php /var/www/html/includes/Html.php /var/www/html/includes/xml/Xml.php