⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 refindex_cli.php

📁 Typo3, 开源里边最强大的
💻 PHP
字号:
<?phpif (!defined('TYPO3_cliMode'))	die('You cannot run this script directly!');require_once(PATH_t3lib.'class.t3lib_refindex.php');	// Call the functionalityif (in_array('-e',$_SERVER["argv"]) || in_array('-c',$_SERVER["argv"]))	{	$testOnly = in_array('-c',$_SERVER["argv"]);	$refIndexObj = t3lib_div::makeInstance('t3lib_refindex');	list($headerContent,$bodyContent) = $refIndexObj->updateIndex($testOnly,!in_array('-s',$_SERVER["argv"]));} else {	echo "Options:-c = Check refindex-e = Update refindex-s = Silent";		exit;}?>

⌨️ 快捷键说明

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