page4.php

来自「一个开源免费的php chat.采用txt作数据库,性能不错.」· PHP 代码 · 共 23 行

PHP
23
字号
<?phpinclude('engene.inc.php');$phpi = new phpInstaller();$dataDir = realpath(dirname(__FILE__).'/../engene_data');$phpi->dataDir($dataDir);$phpi->appName = gpv('appname');$phpi->ignore[] = 'test.';$phpi->addPath(gpv('rootpath'));$phpi->addPage('Pre-installation Check',file_get_contents('createinstaller/installer_pages/1.txt'));if(gpv('step_license')){	$lPath = $dataDir.'/license.html';	if($phpi->addMetaFile('LICENSE',$lPath,'text/html')){		$phpi->addPage('License',file_get_contents('createinstaller/installer_pages/2.txt'));	}else{		$phpi->message('The license could not be added. Check the file <var>'.$lPath.'</var>.');	}}$phpi->generate();?>

⌨️ 快捷键说明

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