rebuildinterwiki.php

来自「php 开发的内容管理系统」· PHP 代码 · 共 32 行

PHP
32
字号
<?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( "rebuildInterwiki.inc" );chdir( $oldCwd );$sql = getRebuildInterwikiSQL();# Outputif ( isset( $options['o'] ) ) {	# To file specified with -o	$file = fopen( $options['o'], "w" );	fwrite( $file, $sql );	fclose( $file );} else {	# To stdout	print $sql;}?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?