首页 > 后端开发 > php教程 > CI框架系统常量文件constants.php的配置解读

CI框架系统常量文件constants.php的配置解读

WBOY
发布: 2016-07-25 08:59:35
原创
1429 人浏览过
  1. /*

  2. |--------------------------------------------------------------------------
  3. | File and Directory Modes
  4. |--------------------------------------------------------------------------
  5. */
  6. define('FILE_READ_MODE', 0644);
  7. define('FILE_WRITE_MODE', 0666);
  8. define('DIR_READ_MODE', 0755);
  9. define('DIR_WRITE_MODE', 0777);
  10. /*

  11. |-------------------------------------
  12. | File Stream Modes 文件流模式
  13. |-------------------------------------
  14. | These modes are used when working with fopen()/popen()

  15. */

  16. define('FOPEN_READ', 'rb');
  17. define('FOPEN_READ_WRITE', 'r+b');
  18. define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
  19. define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
  20. define('FOPEN_WRITE_CREATE', 'ab');
  21. define('FOPEN_READ_WRITE_CREATE', 'a+b');
  22. define('FOPEN_WRITE_CREATE_STRICT', 'xb');
  23. define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
  24. /* End of file constants.php */

  25. /* Location: ./application/config/constants.php */
  26. ?>
复制代码


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板