mysql_install.php

来自「sabreipb 2.1.6 utf-8中文版本!」· PHP 代码 · 共 74 行

PHP
74
字号
<?php/*+--------------------------------------------------------------------------|   INVISION POWER BOARD INSTALLER v2.1|   ========================================|   by Matthew Mecham|   (c) 2001 - 2005 Invision Power Services, Inc.|   |   ========================================|   Web: +--------------------------------------------------------------------------||   > Script written by Matthew Mecham|   > Date started: 12th August 2004|   > MYSQL EXTRA CONFIG / INSTALL FILE+--------------------------------------------------------------------------*/class install_extra{	var $errors     = array();	var $info_extra = array();	var $ipsclass   = "";		function install_extra()	{		}		/*-------------------------------------------------------------------------*/	// process_query_create: Alter the query before it goes back $DB->query	// table prefix already changed at this point: CREATE TABLE	/*-------------------------------------------------------------------------*/		function process_query_create( $query )	{		//-----------------------------------------		// Tack on the end the chosen table type		//-----------------------------------------				$table_type = $this->ipsclass->vars['mysql_tbl_type'];				return preg_replace( "#\);$#", ") TYPE=".$table_type.";", $query );	}		/*-------------------------------------------------------------------------*/	// process_query_index: Alter the query before it goes back $DB->query	// table prefix already changed at this point: INDEX	/*-------------------------------------------------------------------------*/		function process_query_index( $query )	{		return $query;	}		/*-------------------------------------------------------------------------*/	// process_query_index: Alter the query before it goes back $DB->query	// table prefix already changed at this point: INSERT	/*-------------------------------------------------------------------------*/		function process_query_insert( $query )	{		return $query;	}		/*-------------------------------------------------------------------------*/	// WHEN SHOWING THE FORM....	/*-------------------------------------------------------------------------*/		function install_form_extra()	{		$extra = "<tr>					<td class='pformleftw'><b>鏁版嵁琛ㄧ被鍨

⌨️ 快捷键说明

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