123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849 |
- <?php
- defined('BASEPATH') OR exit('No direct script access allowed');
- if ( ! function_exists('is_php'))
- {
-
- function is_php($version)
- {
- static $_is_php;
- $version = (string) $version;
- if ( ! isset($_is_php[$version]))
- {
- $_is_php[$version] = version_compare(PHP_VERSION, $version, '>=');
- }
- return $_is_php[$version];
- }
- }
- if ( ! function_exists('is_really_writable'))
- {
-
- function is_really_writable($file)
- {
-
- if (DIRECTORY_SEPARATOR === '/' && (is_php('5.4') OR ! ini_get('safe_mode')))
- {
- return is_writable($file);
- }
-
- if (is_dir($file))
- {
- $file = rtrim($file, '/').'/'.md5(mt_rand());
- if (($fp = @fopen($file, 'ab')) === FALSE)
- {
- return FALSE;
- }
- fclose($fp);
- @chmod($file, 0777);
- @unlink($file);
- return TRUE;
- }
- elseif ( ! is_file($file) OR ($fp = @fopen($file, 'ab')) === FALSE)
- {
- return FALSE;
- }
- fclose($fp);
- return TRUE;
- }
- }
- if ( ! function_exists('load_class'))
- {
-
- function &load_class($class, $directory = 'libraries', $param = NULL)
- {
- static $_classes = array();
-
- if (isset($_classes[$class]))
- {
- return $_classes[$class];
- }
- $name = FALSE;
-
-
- foreach (array(APPPATH, BASEPATH) as $path)
- {
- if (file_exists($path.$directory.'/'.$class.'.php'))
- {
- $name = 'CI_'.$class;
- if (class_exists($name, FALSE) === FALSE)
- {
- require_once($path.$directory.'/'.$class.'.php');
- }
- break;
- }
- }
-
- if (file_exists(APPPATH.$directory.'/'.config_item('subclass_prefix').$class.'.php'))
- {
- $name = config_item('subclass_prefix').$class;
- if (class_exists($name, FALSE) === FALSE)
- {
- require_once(APPPATH.$directory.'/'.$name.'.php');
- }
- }
-
- if ($name === FALSE)
- {
-
-
- set_status_header(503);
- echo 'Unable to locate the specified class: '.$class.'.php';
- exit(5);
- }
-
- is_loaded($class);
- $_classes[$class] = isset($param)
- ? new $name($param)
- : new $name();
- return $_classes[$class];
- }
- }
- if ( ! function_exists('is_loaded'))
- {
-
- function &is_loaded($class = '')
- {
- static $_is_loaded = array();
- if ($class !== '')
- {
- $_is_loaded[strtolower($class)] = $class;
- }
- return $_is_loaded;
- }
- }
- if ( ! function_exists('get_config'))
- {
-
- function &get_config(Array $replace = array())
- {
- static $config;
- if (empty($config))
- {
- $file_path = APPPATH.'config/config.php';
- $found = FALSE;
- if (file_exists($file_path))
- {
- $found = TRUE;
- require($file_path);
- }
-
- if (file_exists($file_path = APPPATH.'config/'.ENVIRONMENT.'/config.php'))
- {
- require($file_path);
- }
- elseif ( ! $found)
- {
- set_status_header(503);
- echo 'The configuration file does not exist.';
- exit(3);
- }
-
- if ( ! isset($config) OR ! is_array($config))
- {
- set_status_header(503);
- echo 'Your config file does not appear to be formatted correctly.';
- exit(3);
- }
- }
-
- foreach ($replace as $key => $val)
- {
- $config[$key] = $val;
- }
- return $config;
- }
- }
- if ( ! function_exists('config_item'))
- {
-
- function config_item($item)
- {
- static $_config;
- if (empty($_config))
- {
-
- $_config[0] =& get_config();
- }
- return isset($_config[0][$item]) ? $_config[0][$item] : NULL;
- }
- }
- if ( ! function_exists('get_mimes'))
- {
-
- function &get_mimes()
- {
- static $_mimes;
- if (empty($_mimes))
- {
- $_mimes = file_exists(APPPATH.'config/mimes.php')
- ? include(APPPATH.'config/mimes.php')
- : array();
- if (file_exists(APPPATH.'config/'.ENVIRONMENT.'/mimes.php'))
- {
- $_mimes = array_merge($_mimes, include(APPPATH.'config/'.ENVIRONMENT.'/mimes.php'));
- }
- }
- return $_mimes;
- }
- }
- if ( ! function_exists('is_https'))
- {
-
- function is_https()
- {
- if ( ! empty($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) !== 'off')
- {
- return TRUE;
- }
- elseif (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && strtolower($_SERVER['HTTP_X_FORWARDED_PROTO']) === 'https')
- {
- return TRUE;
- }
- elseif ( ! empty($_SERVER['HTTP_FRONT_END_HTTPS']) && strtolower($_SERVER['HTTP_FRONT_END_HTTPS']) !== 'off')
- {
- return TRUE;
- }
- return FALSE;
- }
- }
- if ( ! function_exists('is_cli'))
- {
-
- function is_cli()
- {
- return (PHP_SAPI === 'cli' OR defined('STDIN'));
- }
- }
- if ( ! function_exists('show_error'))
- {
-
- function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered')
- {
- $status_code = abs($status_code);
- if ($status_code < 100)
- {
- $exit_status = $status_code + 9;
- $status_code = 500;
- }
- else
- {
- $exit_status = 1;
- }
- $_error =& load_class('Exceptions', 'core');
- echo $_error->show_error($heading, $message, 'error_general', $status_code);
- exit($exit_status);
- }
- }
- if ( ! function_exists('show_404'))
- {
-
- function show_404($page = '', $log_error = TRUE)
- {
- $_error =& load_class('Exceptions', 'core');
- $_error->show_404($page, $log_error);
- exit(4);
- }
- }
- if ( ! function_exists('log_message'))
- {
-
- function log_message($level, $message)
- {
- static $_log;
- if ($_log === NULL)
- {
-
- $_log[0] =& load_class('Log', 'core');
- }
- $_log[0]->write_log($level, $message);
- }
- }
- if ( ! function_exists('set_status_header'))
- {
-
- function set_status_header($code = 200, $text = '')
- {
- if (is_cli())
- {
- return;
- }
- if (empty($code) OR ! is_numeric($code))
- {
- show_error('Status codes must be numeric', 500);
- }
- if (empty($text))
- {
- is_int($code) OR $code = (int) $code;
- $stati = array(
- 100 => 'Continue',
- 101 => 'Switching Protocols',
- 200 => 'OK',
- 201 => 'Created',
- 202 => 'Accepted',
- 203 => 'Non-Authoritative Information',
- 204 => 'No Content',
- 205 => 'Reset Content',
- 206 => 'Partial Content',
- 300 => 'Multiple Choices',
- 301 => 'Moved Permanently',
- 302 => 'Found',
- 303 => 'See Other',
- 304 => 'Not Modified',
- 305 => 'Use Proxy',
- 307 => 'Temporary Redirect',
- 400 => 'Bad Request',
- 401 => 'Unauthorized',
- 402 => 'Payment Required',
- 403 => 'Forbidden',
- 404 => 'Not Found',
- 405 => 'Method Not Allowed',
- 406 => 'Not Acceptable',
- 407 => 'Proxy Authentication Required',
- 408 => 'Request Timeout',
- 409 => 'Conflict',
- 410 => 'Gone',
- 411 => 'Length Required',
- 412 => 'Precondition Failed',
- 413 => 'Request Entity Too Large',
- 414 => 'Request-URI Too Long',
- 415 => 'Unsupported Media Type',
- 416 => 'Requested Range Not Satisfiable',
- 417 => 'Expectation Failed',
- 422 => 'Unprocessable Entity',
- 426 => 'Upgrade Required',
- 428 => 'Precondition Required',
- 429 => 'Too Many Requests',
- 431 => 'Request Header Fields Too Large',
- 500 => 'Internal Server Error',
- 501 => 'Not Implemented',
- 502 => 'Bad Gateway',
- 503 => 'Service Unavailable',
- 504 => 'Gateway Timeout',
- 505 => 'HTTP Version Not Supported',
- 511 => 'Network Authentication Required',
- );
- if (isset($stati[$code]))
- {
- $text = $stati[$code];
- }
- else
- {
- show_error('No status text available. Please check your status code number or supply your own message text.', 500);
- }
- }
- if (strpos(PHP_SAPI, 'cgi') === 0)
- {
- header('Status: '.$code.' '.$text, TRUE);
- return;
- }
- $server_protocol = (isset($_SERVER['SERVER_PROTOCOL']) && in_array($_SERVER['SERVER_PROTOCOL'], array('HTTP/1.0', 'HTTP/1.1', 'HTTP/2'), TRUE))
- ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1';
- header($server_protocol.' '.$code.' '.$text, TRUE, $code);
- }
- }
- if ( ! function_exists('_error_handler'))
- {
-
- function _error_handler($severity, $message, $filepath, $line)
- {
- $is_error = (((E_ERROR | E_PARSE | E_COMPILE_ERROR | E_CORE_ERROR | E_USER_ERROR) & $severity) === $severity);
-
-
-
-
-
-
- if ($is_error)
- {
- set_status_header(500);
- }
-
-
- if (($severity & error_reporting()) !== $severity)
- {
- return;
- }
- $_error =& load_class('Exceptions', 'core');
- $_error->log_exception($severity, $message, $filepath, $line);
-
- if (str_ireplace(array('off', 'none', 'no', 'false', 'null'), '', ini_get('display_errors')))
- {
- $_error->show_php_error($severity, $message, $filepath, $line);
- }
-
-
-
- if ($is_error)
- {
- exit(1);
- }
- }
- }
- if ( ! function_exists('_exception_handler'))
- {
-
- function _exception_handler($exception)
- {
- $_error =& load_class('Exceptions', 'core');
- $_error->log_exception('error', 'Exception: '.$exception->getMessage(), $exception->getFile(), $exception->getLine());
- is_cli() OR set_status_header(500);
-
- if (str_ireplace(array('off', 'none', 'no', 'false', 'null'), '', ini_get('display_errors')))
- {
- $_error->show_exception($exception);
- }
- exit(1);
- }
- }
- if ( ! function_exists('_shutdown_handler'))
- {
-
- function _shutdown_handler()
- {
- $last_error = error_get_last();
- if (isset($last_error) &&
- ($last_error['type'] & (E_ERROR | E_PARSE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING)))
- {
- _error_handler($last_error['type'], $last_error['message'], $last_error['file'], $last_error['line']);
- }
- }
- }
- if ( ! function_exists('remove_invisible_characters'))
- {
-
- function remove_invisible_characters($str, $url_encoded = TRUE)
- {
- $non_displayables = array();
-
-
- if ($url_encoded)
- {
- $non_displayables[] = '/%0[0-8bcef]/i';
- $non_displayables[] = '/%1[0-9a-f]/i';
- $non_displayables[] = '/%7f/i';
- }
- $non_displayables[] = '/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]+/S';
- do
- {
- $str = preg_replace($non_displayables, '', $str, -1, $count);
- }
- while ($count);
- return $str;
- }
- }
- if ( ! function_exists('html_escape'))
- {
-
- function html_escape($var, $double_encode = TRUE)
- {
- if (empty($var))
- {
- return $var;
- }
- if (is_array($var))
- {
- foreach (array_keys($var) as $key)
- {
- $var[$key] = html_escape($var[$key], $double_encode);
- }
- return $var;
- }
- return htmlspecialchars($var, ENT_QUOTES, config_item('charset'), $double_encode);
- }
- }
- if ( ! function_exists('_stringify_attributes'))
- {
-
- function _stringify_attributes($attributes, $js = FALSE)
- {
- $atts = NULL;
- if (empty($attributes))
- {
- return $atts;
- }
- if (is_string($attributes))
- {
- return ' '.$attributes;
- }
- $attributes = (array) $attributes;
- foreach ($attributes as $key => $val)
- {
- $atts .= ($js) ? $key.'='.$val.',' : ' '.$key.'="'.$val.'"';
- }
- return rtrim($atts, ',');
- }
- }
- if ( ! function_exists('function_usable'))
- {
-
- function function_usable($function_name)
- {
- static $_suhosin_func_blacklist;
- if (function_exists($function_name))
- {
- if ( ! isset($_suhosin_func_blacklist))
- {
- $_suhosin_func_blacklist = extension_loaded('suhosin')
- ? explode(',', trim(ini_get('suhosin.executor.func.blacklist')))
- : array();
- }
- return ! in_array($function_name, $_suhosin_func_blacklist, TRUE);
- }
- return FALSE;
- }
- }
|