refreshlinks.php

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

PHP
33
字号
<?php/** * @todo document * @package MediaWiki * @subpackage Maintenance *//** */$optionsWithArgs = array( 'm', 'e' );require_once( "commandLine.inc" );require_once( "refreshLinks.inc" );error_reporting( E_ALL & (~E_NOTICE) );if ( !$options['dfn-only'] ) {	if ($args[0]) {		$start = (int)$args[0];	} else {		$start = 1;	}	refreshLinks( $start, $options['new-only'], $options['m'], $options['e'] );}// this bit's bad for replication: disabling temporarily// --brion 2005-07-16//deleteLinksFromNonexistent();if ( $options['globals'] ) {	print_r( $GLOBALS );}?>

⌨️ 快捷键说明

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