fork download
  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. /**
  3.  * CodeIgniter
  4.  *
  5.  * An open source application development framework for PHP 5.1.6 or newer
  6.  *
  7.  * @package CodeIgniter
  8.  * @author ExpressionEngine Dev Team
  9.  * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc.
  10.  * @license http://c...content-available-to-author-only...r.com/user_guide/license.html
  11.  * @link http://c...content-available-to-author-only...r.com
  12.  * @since Version 1.0
  13.  * @filesource
  14.  */
  15.  
  16. // ------------------------------------------------------------------------
  17.  
  18. /**
  19.  * Logging Class
  20.  *
  21.  * @package CodeIgniter
  22.  * @subpackage Libraries
  23.  * @category Logging
  24.  * @author ExpressionEngine Dev Team
  25.  * @link http://c...content-available-to-author-only...r.com/user_guide/general/errors.html
  26.  */
  27. class CI_Log {
  28.  
  29. protected $_log_path;
  30. protected $_threshold = 1;
  31. protected $_date_fmt = 'Y-m-d H:i:s';
  32. protected $_enabled = TRUE;
  33. protected $_levels = array('ERROR' => '1', 'DEBUG' => '2', 'INFO' => '3', 'ALL' => '4');
  34.  
  35. /**
  36. * Constructor
  37. */
  38. public function __construct()
  39. {
  40. $config =& get_config();
  41.  
  42. $this->_log_path = ($config['log_path'] != '') ? $config['log_path'] : APPPATH.'logs/';
  43.  
  44. if ( ! is_dir($this->_log_path) OR ! is_really_writable($this->_log_path))
  45. {
  46. $this->_enabled = FALSE;
  47. }
  48.  
  49. if (is_numeric($config['log_threshold']))
  50. {
  51. $this->_threshold = $config['log_threshold'];
  52. }
  53.  
  54. if ($config['log_date_format'] != '')
  55. {
  56. $this->_date_fmt = $config['log_date_format'];
  57. }
  58.  
  59. var_dump(is_image_exists("https://m...content-available-to-author-only...s.com/616426713.jpg"));
  60. var_dump(is_image_exists("https://m...content-available-to-author-only...s.com/625420833.jpg"));
  61. }
  62.  
  63. // --------------------------------------------------------------------
  64.  
  65. /**
  66. * Write Log File
  67. *
  68. * Generally this function will be called using the global log_message() function
  69. *
  70. * @param string the error level
  71. * @param string the error message
  72. * @param bool whether the error is a native PHP error
  73. * @return bool
  74. */
  75. public function write_log($level = 'error', $msg, $php_error = FALSE)
  76. {
  77. if ($this->_enabled === FALSE)
  78. {
  79. return FALSE;
  80. }
  81.  
  82. $level = strtoupper($level);
  83.  
  84. if ( ! isset($this->_levels[$level]) OR ($this->_levels[$level] > $this->_threshold))
  85. {
  86. return FALSE;
  87. }
  88.  
  89. $filepath = $this->_log_path.'log-'.date('Y-m-d').'.php';
  90. $message = '';
  91.  
  92. if ( ! file_exists($filepath))
  93. {
  94. $message .= "<"."?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?".">\n\n";
  95. }
  96.  
  97. if ( ! $fp = @fopen($filepath, FOPEN_WRITE_CREATE))
  98. {
  99. return FALSE;
  100. }
  101.  
  102. $message .= $level.' '.(($level == 'INFO') ? ' -' : '-').' '.date($this->_date_fmt). ' --> '.$msg."\n";
  103.  
  104. flock($fp, LOCK_EX);
  105. fwrite($fp, $message);
  106. flock($fp, LOCK_UN);
  107. fclose($fp);
  108.  
  109. @chmod($filepath, FILE_WRITE_MODE);
  110. return TRUE;
  111.  
  112.  
  113. }
  114.  
  115. function is_image_exists($url) {
  116. $ch = curl_init($url);
  117. curl_setopt($ch, CURLOPT_NOBODY, true); // Don’t download the body
  118. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  119. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); // Handle redirects
  120. curl_setopt($ch, CURLOPT_TIMEOUT, 5); // Optional: prevent long waits
  121. curl_exec($ch);
  122. $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE);
  123. curl_close($ch);
  124.  
  125. return in_array($http_code, [200]);
  126. }
  127.  
  128.  
  129.  
  130. }
  131. // END Log Class
  132.  
  133. /* End of file Log.php */
  134. /* Location: ./system/libraries/Log.php */
Success #stdin #stdout 0.03s 25888KB
stdin
Standard input is empty
stdout
No direct script access allowed