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

📄 convert_phpbb20.php

📁 通过基于Windows的图形化界面
💻 PHP
📖 第 1 页 / 共 3 页
字号:
		'execute_first'	=> '			import_avatar_gallery();			if (defined("MOD_ATTACHMENT")) phpbb_import_attach_config();			phpbb_insert_forums();		',		'execute_last'	=> array('			add_bots();		', '			update_folder_pm_count();		', '			update_unread_count();		', '			phpbb_convert_authentication(\'start\');		', '			phpbb_convert_authentication(\'first\');		', '			phpbb_convert_authentication(\'second\');		', '			phpbb_convert_authentication(\'third\');		'),		'schema' => array(			array(				'target'		=> (defined('MOD_ATTACHMENT')) ? ATTACHMENTS_TABLE : '',				'primary'		=> 'attachments.attach_id',				'query_first'	=> (defined('MOD_ATTACHMENT')) ? $convert->truncate_statement . ATTACHMENTS_TABLE : '',				array('attach_id',				'attachments.attach_id',				''),				array('post_msg_id',			'attachments.post_id',					''),				array('topic_id',				'posts.topic_id',						''),				array('in_message',				0,										''),				array('is_orphan',				0,										''),				array('poster_id',				'attachments.user_id_1 AS poster_id',	'phpbb_user_id'),				array('physical_filename',		'attachments_desc.physical_filename',	'import_attachment'),				array('real_filename',			'attachments_desc.real_filename',		''),				array('download_count',			'attachments_desc.download_count',		''),				array('attach_comment',			'attachments_desc.comment',				array('function1' => 'phpbb_set_encoding', 'function2' => 'utf8_htmlspecialchars')),				array('extension',				'attachments_desc.extension',			''),				array('mimetype',				'attachments_desc.mimetype',			''),				array('filesize',				'attachments_desc.filesize',			''),				array('filetime',				'attachments_desc.filetime',			''),				array('thumbnail',				'attachments_desc.thumbnail',			''),				'where'			=> 'attachments_desc.attach_id = attachments.attach_id AND attachments.privmsgs_id = 0 AND posts.post_id = attachments.post_id',				'group_by'		=> 'attachments.attach_id'			),			array(				'target'		=> (defined('MOD_ATTACHMENT')) ? ATTACHMENTS_TABLE : '',				'primary'		=> 'attachments.attach_id',				array('attach_id',				'attachments.attach_id',				''),				array('post_msg_id',			'attachments.privmsgs_id',				''),				array('topic_id',				0,										''),				array('in_message',				1,										''),				array('is_orphan',				0,										''),				array('poster_id',				'attachments.user_id_1 AS poster_id',	'phpbb_user_id'),				array('physical_filename',		'attachments_desc.physical_filename',	'import_attachment'),				array('real_filename',			'attachments_desc.real_filename',		''),				array('download_count',			'attachments_desc.download_count',		''),				array('attach_comment',			'attachments_desc.comment',				array('function1' => 'phpbb_set_encoding', 'function2' => 'utf8_htmlspecialchars')),				array('extension',				'attachments_desc.extension',			''),				array('mimetype',				'attachments_desc.mimetype',			''),				array('filesize',				'attachments_desc.filesize',			''),				array('filetime',				'attachments_desc.filetime',			''),				array('thumbnail',				'attachments_desc.thumbnail',			''),				'where'			=> 'attachments_desc.attach_id = attachments.attach_id AND attachments.post_id = 0',				'group_by'		=> 'attachments.attach_id'			),			array(				'target'		=> (defined('MOD_ATTACHMENT')) ? EXTENSIONS_TABLE : '',				'query_first'	=> (defined('MOD_ATTACHMENT')) ? $convert->truncate_statement . EXTENSIONS_TABLE : '',				array('extension_id',			'extensions.ext_id',				''),				array('group_id',				'extensions.group_id',				''),				array('extension',				'extensions.extension',				''),			),			array(				'target'		=> (defined('MOD_ATTACHMENT')) ? EXTENSION_GROUPS_TABLE : '',				'query_first'	=> (defined('MOD_ATTACHMENT')) ? $convert->truncate_statement . EXTENSION_GROUPS_TABLE : '',				array('group_id',				'extension_groups.group_id',			''),				array('group_name',				'extension_groups.group_name',			array('function1' => 'phpbb_set_encoding', 'function2' => 'utf8_htmlspecialchars')),				array('cat_id',					'extension_groups.cat_id',				'phpbb_attachment_category'),				array('allow_group',			'extension_groups.allow_group',			''),				array('download_mode',			1,										''),				array('upload_icon',			'',										''),				array('max_filesize',			'extension_groups.max_filesize',		''),				array('allowed_forums',			'extension_groups.forum_permissions',	'phpbb_attachment_forum_perms'),				array('allow_in_pm',			1,										''),			),			array(				'target'		=> BANLIST_TABLE,				'query_first'	=> $convert->truncate_statement . BANLIST_TABLE,				array('ban_ip',					'banlist.ban_ip',					'decode_ban_ip'),				array('ban_userid',				'banlist.ban_userid',				'phpbb_user_id'),				array('ban_email',				'banlist.ban_email',				''),				'where'			=> "banlist.ban_ip NOT LIKE '%.%'",			),			array(				'target'		=> BANLIST_TABLE,				array('ban_ip',					'banlist.ban_ip',	''),				array('ban_userid',				'0',				''),				array('ban_email',				'',					''),				'where'			=> "banlist.ban_ip LIKE '%.%'",			),			array(				'target'		=> DISALLOW_TABLE,				'query_first'	=> $convert->truncate_statement . DISALLOW_TABLE,				array('disallow_username',		'disallow.disallow_username',				'phpbb_set_encoding'),			),			array(				'target'		=> RANKS_TABLE,				'query_first'	=> $convert->truncate_statement . RANKS_TABLE,				array('rank_id',					'ranks.rank_id',				''),				array('rank_title',					'ranks.rank_title',				array('function1' => 'phpbb_set_encoding', 'function2' => 'utf8_htmlspecialchars')),				array('rank_min',					'ranks.rank_min',				array('typecast' => 'int', 'execute' => '{RESULT} = ({VALUE}[0] < 0) ? 0 : {VALUE}[0];')),				array('rank_special',				'ranks.rank_special',			''),				array('rank_image',					'ranks.rank_image',				'import_rank'),			),			array(				'target'		=> TOPICS_TABLE,				'query_first'	=> $convert->truncate_statement . TOPICS_TABLE,				'primary'		=> 'topics.topic_id',				array('topic_id',				'topics.topic_id',					''),				array('forum_id',				'topics.forum_id',					''),				array('icon_id',				0,									''),				array('topic_poster',			'topics.topic_poster AS poster_id',	'phpbb_user_id'),				array('topic_attachment',		((defined('MOD_ATTACHMENT')) ? 'topics.topic_attachment' : 0), ''),				array('topic_title',			'topics.topic_title',				'phpbb_set_encoding'),				array('topic_time',				'topics.topic_time',				''),				array('topic_views',			'topics.topic_views',				''),				array('topic_replies',			'topics.topic_replies',				''),				array('topic_replies_real',		'topics.topic_replies',				''),				array('topic_last_post_id',		'topics.topic_last_post_id',		''),				array('topic_status',			'topics.topic_status',				'is_topic_locked'),				array('topic_moved_id',			0,									''),				array('topic_type',				'topics.topic_type',				'phpbb_convert_topic_type'),				array('topic_first_post_id',	'topics.topic_first_post_id',		''),				array('poll_title',				'vote_desc.vote_text',				array('function1' => 'null_to_str', 'function2' => 'phpbb_set_encoding', 'function3' => 'utf8_htmlspecialchars')),				array('poll_start',				'vote_desc.vote_start',				'null_to_zero'),				array('poll_length',			'vote_desc.vote_length',			'null_to_zero'),				array('poll_max_options',		1,									''),				array('poll_vote_change',		0,									''),				'left_join'		=> 'topics LEFT JOIN vote_desc ON topics.topic_id = vote_desc.topic_id AND topics.topic_vote = 1',				'where'			=> 'topics.topic_moved_id = 0',			),			array(				'target'		=> TOPICS_TABLE,				'primary'		=> 'topics.topic_id',				array('topic_id',				'topics.topic_id',					''),				array('forum_id',				'topics.forum_id',					''),				array('icon_id',				0,									''),				array('topic_poster',			'topics.topic_poster AS poster_id',	'phpbb_user_id'),				array('topic_attachment',		((defined('MOD_ATTACHMENT')) ? 'topics.topic_attachment' : 0), ''),				array('topic_title',			'topics.topic_title',				'phpbb_set_encoding'),				array('topic_time',				'topics.topic_time',				''),				array('topic_views',			'topics.topic_views',				''),				array('topic_replies',			'topics.topic_replies',				''),				array('topic_replies_real',		'topics.topic_replies',				''),				array('topic_last_post_id',		'topics.topic_last_post_id',		''),				array('topic_status',			ITEM_MOVED,							''),				array('topic_moved_id',			'topics.topic_moved_id',			''),				array('topic_type',				'topics.topic_type',				'phpbb_convert_topic_type'),				array('topic_first_post_id',	'topics.topic_first_post_id',		''),				array('poll_title',				'vote_desc.vote_text',				array('function1' => 'null_to_str', 'function2' => 'phpbb_set_encoding', 'function3' => 'utf8_htmlspecialchars')),				array('poll_start',				'vote_desc.vote_start',				'null_to_zero'),				array('poll_length',			'vote_desc.vote_length',			'null_to_zero'),				array('poll_max_options',		1,									''),				array('poll_vote_change',		0,									''),				'left_join'		=> 'topics LEFT JOIN vote_desc ON topics.topic_id = vote_desc.topic_id AND topics.topic_vote = 1',				'where'			=> 'topics.topic_moved_id <> 0',			),			array(				'target'		=> TOPICS_WATCH_TABLE,				'primary'		=> 'topics_watch.topic_id',				'query_first'	=> $convert->truncate_statement . TOPICS_WATCH_TABLE,				array('topic_id',				'topics_watch.topic_id',			''),				array('user_id',				'topics_watch.user_id',				'phpbb_user_id'),				array('notify_status',			'topics_watch.notify_status',		''),			),			array(				'target'		=> SMILIES_TABLE,				'query_first'	=> $convert->truncate_statement . SMILIES_TABLE,				array('smiley_id',				'smilies.smilies_id',				''),				array('code',					'smilies.code',						'phpbb_set_encoding'),				array('emotion',				'smilies.emoticon',					'phpbb_set_encoding'),				array('smiley_url',				'smilies.smile_url',				'import_smiley'),				array('smiley_width',			'smilies.smile_url',				'get_smiley_width'),				array('smiley_height',			'smilies.smile_url',				'get_smiley_height'),				array('smiley_order',			'smilies.smilies_id',				''),				array('display_on_posting',		'smilies.smilies_id',				array(					'execute'		=> '{RESULT} = ({VALUE}[0] <= 20) ? 1 : 0;',				)),				'order_by'		=> 'smilies.smilies_id ASC',			),			array(				'target'		=> POLL_OPTIONS_TABLE,				'primary'		=> 'vote_results.vote_option_id',				'query_first'	=> $convert->truncate_statement . POLL_OPTIONS_TABLE,				array('poll_option_id',			'vote_results.vote_option_id',		''),				array('topic_id',				'vote_desc.topic_id',				''),				array('',						'topics.topic_poster AS poster_id',	'phpbb_user_id'),				array('poll_option_text',		'vote_results.vote_option_text',	array('function1' => 'phpbb_set_encoding', 'function2' => 'utf8_htmlspecialchars')),				array('poll_option_total',		'vote_results.vote_result',			''),				'where'			=> 'vote_results.vote_id = vote_desc.vote_id',				'left_join'		=> 'vote_desc LEFT JOIN topics ON topics.topic_id = vote_desc.topic_id',			),			array(				'target'		=> POLL_VOTES_TABLE,				'primary'		=> 'vote_desc.topic_id',				'query_first'	=> $convert->truncate_statement . POLL_VOTES_TABLE,				array('poll_option_id',			1,									''),				array('topic_id',				'vote_desc.topic_id',				''),				array('vote_user_id',			'vote_voters.vote_user_id',			'phpbb_user_id'),				array('vote_user_ip',			'vote_voters.vote_user_ip',			'decode_ip'),				'where'			=> 'vote_voters.vote_id = vote_desc.vote_id',			),			array(				'target'		=> WORDS_TABLE,				'primary'		=> 'words.word_id',				'query_first'	=> $convert->truncate_statement . WORDS_TABLE,				array('word_id',				'words.word_id',					''),				array('word',					'words.word',						'phpbb_set_encoding'),				array('replacement',			'words.replacement',				'phpbb_set_encoding'),			),			array(				'target'		=> POSTS_TABLE,				'primary'		=> 'posts.post_id',				'query_first'	=> $convert->truncate_statement . POSTS_TABLE,				'execute_first'	=> '					$config["max_post_chars"] = 0;				',				array('post_id',				'posts.post_id',					''),				array('topic_id',				'posts.topic_id',					''),				array('forum_id',				'posts.forum_id',					''),				array('poster_id',				'posts.poster_id',					'phpbb_user_id'),				array('icon_id',				0,									''),				array('poster_ip',				'posts.poster_ip',					'decode_ip'),				array('post_time',				'posts.post_time',					''),				array('enable_bbcode',			'posts.enable_bbcode',				''),				array('',						'posts.enable_html',				''),				array('enable_smilies',			'posts.enable_smilies',				''),				array('enable_sig',				'posts.enable_sig',					''),				array('enable_magic_url',		1,									''),				array('post_username',			'posts.post_username',				'phpbb_set_encoding'),				array('post_subject',			'posts_text.post_subject',			'phpbb_set_encoding'),				array('post_attachment',		((defined('MOD_ATTACHMENT')) ? 'posts.post_attachment' : 0), ''),

⌨️ 快捷键说明

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