Home PHP Libraries Other libraries PHP generation and online browsing class library
PHP generation and online browsing class library
<?php  if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
|--------------------------------------------------------------------------
| 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('FILE_READ_MODE', 0644);
define('FILE_WRITE_MODE', 0666);
define('DIR_READ_MODE', 0755);
define('DIR_WRITE_MODE', 0777);
/*
|--------------------------------------------------------------------------
| File Stream Modes
|--------------------------------------------------------------------------
|
| These modes are used when working with fopen()/popen()
|
*/
define('FOPEN_READ','rb');
define('FOPEN_READ_WRITE','r+b');
define('FOPEN_WRITE_CREATE_DESTRUCTIVE','wb'); // truncates existing file data, use with care
define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE','w+b'); // truncates existing file data, use with care
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');
/* End of file constants.php */
/* Location: ./application/config/constants.php */

This is a PHP generation and online browsing library. Friends who need it can download it and use it.

Disclaimer

All resources on this site are contributed by netizens or reprinted by major download sites. Please check the integrity of the software yourself! All resources on this site are for learning reference only. Please do not use them for commercial purposes. Otherwise, you will be responsible for all consequences! If there is any infringement, please contact us to delete it. Contact information: admin@php.cn

Related Article

PHP thumbnail generation class (supports imagemagick and gd libraries) PHP thumbnail generation class (supports imagemagick and gd libraries)

25 Jul 2016

PHP thumbnail generation class (supports imagemagick and gd libraries)

100 commonly used PHP class library resources and techniques 100 commonly used PHP class library resources and techniques

14 Mar 2018

Collect and organize some commonly used PHP class libraries, resources and techniques. In order to quickly find what you need at work, this article mainly shares with you 100 commonly used PHP class library resources and techniques, hoping to help everyone.

PHP QR Code barcode and QR code generation class library PHP QR Code barcode and QR code generation class library

25 Jul 2016

PHP QR Code barcode and QR code generation class library

PHP thumbnail generation class, supports imagemagick and gd library processing PHP thumbnail generation class, supports imagemagick and gd library processing

18 Feb 2017

1. Reduce/enlarge proportionally 2. Fill background color 3. Crop by area 4. Add watermark, including watermark position, transparency, etc.

PHP report class library jpgraph histogram generation example PHP report class library jpgraph histogram generation example

25 Jul 2016

PHP report class library jpgraph histogram generation example

Is there any PHP class library and function module sharing website in China similar to phpclasses? Is there any PHP class library and function module sharing website in China similar to phpclasses?

11 Oct 2016

Question: Are there any PHP class libraries and functional module sharing websites in China similar to phpclasses? Just take some extensions and you can use or learn them directly.

See all articles