main.php

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

PHP
21
字号
<?phpdefine("_MD_MEDIAWIKI_XOOPSMODE", "Switch to XOOPS mode");define("_MD_MEDIAWIKI_MEDIAWIKIMODE", "Switch to MediaWiki mode");/* * A function used by UtfNormal.php to clean up invalid UTF-8 sequences *  * If the function is not defined, UtfNormal::quickIsNFCVerify will be called, which causes cleanup failure in some languages * So, if you have problem with mediawiki input, set $skipUtf8Cleanup = 1; * */  $skipUtf8Cleanup = 1; // Change to 1 if you have problem with mediawiki input.if($skipUtf8Cleanup): function utf8_normalize($string = null){	return $string;}endif;?>

⌨️ 快捷键说明

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