dumpinterwiki.php
来自「php 开发的内容管理系统」· PHP 代码 · 共 26 行
PHP
26 行
<?php/** * Rebuild interwiki table using the file on meta and the language list * Wikimedia specific! * @todo document * @package MediaWiki * @subpackage Maintenance *//** */$oldCwd = getcwd();$optionsWithArgs = array( "o" );include_once( "commandLine.inc" );include_once( "dumpInterwiki.inc" );chdir( $oldCwd );# Outputif ( isset( $options['o'] ) ) { # To database specified with -o $dbFile = dba_open( $options['o'], "n", "cdb_make" );} getRebuildInterwikiDump();?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?