Home >Backend Development >PHP Tutorial >Reading of CI framework source code and analysis of system constant file constants.php configuration

Reading of CI framework source code and analysis of system constant file constants.php configuration

不言
不言Original
2018-06-19 16:55:501215browse

CI framework source code reading, system constant file constants.php configuration, friends in need can refer to it

Configuring system constants
1. Check and configure these preferences when the file system is working
These default values ​​will appropriately increase the security of the system when the file system is running, but when the bottom layer of php or apache opens a separate process for each user, it is always correct to use octal values
FILE_READ_MODE The mode for reading files
FILE_WRITE_MODE The mode for writing files
DIR_READ_MODE The mode for reading directories
DIR_WRITE_MODE The mode for writing directories
2. File stream mode
When we use fopen() These modes are needed when /popen()
define('FOPEN_READ', 'rb');
define('FOPEN_READ_WRITE', 'r b');
define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb' );
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w b');
define('FOPEN_WRITE_CREATE', 'ab');
define('FOPEN_READ_WRITE_CREATE', 'a b');
define ('FOPEN_WRITE_CREATE_STRICT', 'xb');
define('FOPEN_READ_WRITE_CREATE_STRICT', 'x b');
File source code

[php]  
<?php  if ( ! defined(&#39;BASEPATH&#39;)) exit(&#39;No direct script access allowed&#39;);  
/* 
|-------------------------------------------------------------------------- 
| File and Directory Modes 
|-------------------------------------------------------------------------- 
| These prefs 控制台、首选项 are used when checking and setting modes when working 
| with the file system.  The defaults are fine 罚款 on servers with proper 
| security, but you may wish (or even need) to change the values in 
| certain environments (Apache running a separate process for each 
| user, PHP under CGI with Apache suEXEC, etc.).  Octal values should 
| always be used to set the mode correctly. 
*/  
define(&#39;FILE_READ_MODE&#39;, 0644);  
define(&#39;FILE_WRITE_MODE&#39;, 0666);  
define(&#39;DIR_READ_MODE&#39;, 0755);  
define(&#39;DIR_WRITE_MODE&#39;, 0777);  
/* 
|-------------------------------------------------------------------------- 
| File Stream Modes 文件流模式 
|-------------------------------------------------------------------------- 
| These modes are used when working with fopen()/popen() 
*/  
define(&#39;FOPEN_READ&#39;,                            &#39;rb&#39;);  
define(&#39;FOPEN_READ_WRITE&#39;,                      &#39;r+b&#39;);  
define(&#39;FOPEN_WRITE_CREATE_DESTRUCTIVE&#39;,        &#39;wb&#39;); // truncates existing file data, use with care  
define(&#39;FOPEN_READ_WRITE_CREATE_DESTRUCTIVE&#39;,   &#39;w+b&#39;); // truncates existing file data, use with care  
define(&#39;FOPEN_WRITE_CREATE&#39;,                    &#39;ab&#39;);  
define(&#39;FOPEN_READ_WRITE_CREATE&#39;,               &#39;a+b&#39;);  
define(&#39;FOPEN_WRITE_CREATE_STRICT&#39;,             &#39;xb&#39;);  
define(&#39;FOPEN_READ_WRITE_CREATE_STRICT&#39;,        &#39;x+b&#39;);  
  
/* End of file constants.php */  
/* Location: ./application/config/constants.php */

The above is the entire content of this article, I hope it will be helpful to everyone's learning For help, please pay attention to the PHP Chinese website for more related content!

Related recommendations:

Analysis on CodeIgniter framework verification code library files and usage

How to use CodeIgniter to integrate Smarty

The above is the detailed content of Reading of CI framework source code and analysis of system constant file constants.php configuration. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn