📄 checksstep.class.php
字号:
<?php /** * Checks step - check environment - PHP version, are folder writable etc * * @package ScriptInstaller * @subpackage installation * @version 1.0 * @http://www.projectpier.org/ */ class ChecksStep extends ScriptInstallerStep { /** * Array of files and folders that need to writable * * @var array */ private $check_is_writable = null; /** * Array of extensions that need to be present for ProjectPier to be installed * * @var array */ private $check_extensions = null; /** * Construct the ChecksStep * * @access public * @param void * @return ChecksStep */ function __construct() { $this->setName('Environment check'); $this->check_is_writable = array( '/config/config.php', '/public/files', '/cache', '/upload' ); // array $this->check_extensions = array( 'mysql', 'gd', 'simplexml' ); // array } // __construct /** * Execute environment checks * * @access public * @param void * @return boolean */ function execute() { $all_ok = true; // Check PHP version if (version_compare(PHP_VERSION, '5.0.2', 'ge')) { $this->addToChecklist('PHP version is ' . PHP_VERSION, true); } else { $this->addToChecklist('You PHP version is ' . PHP_VERSION . '. PHP 5.0.2 or newer is required', false); $all_ok = false; } // if foreach ($this->check_extensions as $extension_name) { if (extension_loaded($extension_name)) { $this->addToChecklist("'$extension_name' extension is loaded", true); } else { $this->addToChecklist("'$extension_name' extension is not loaded", false); $all_ok = false; } // if } // if if (is_array($this->check_is_writable)) { foreach ($this->check_is_writable as $relative_folder_path) { $check_this = INSTALLATION_PATH . $relative_folder_path; $is_writable = false; if (is_file($check_this)) { $is_writable = file_is_writable($check_this); } elseif (is_dir($check_this)) { $is_writable = folder_is_writable($check_this); } // if if ($is_writable) { $this->addToChecklist("$relative_folder_path is writable", true); } else { $this->addToChecklist("$relative_folder_path is not writable", false); $all_ok = false; } // if } // foreach } // if $this->setContentFromTemplate('checks.php'); if (ini_get('zend.ze1_compatibility_mode')) { $this->addToChecklist('zend.ze1_compatibility_mode is set to On. This can cause some strange problems. It is strongly suggested to turn this value to Off (in your php.ini file)', false); } // if if ($all_ok) { return $this->isSubmited(); } // if $this->setNextDisabled(true); return false; } // execute } // ChecksStep?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -