/halogy/application/config/constants.php

https://bitbucket.org/haloweb/halogy-1.0/ · PHP · 41 lines · 13 code · 5 blank · 23 comment · 1 complexity · 6d60c36027adbc881cc30395c411ecbb MD5 · raw file

  1. <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
  2. /*
  3. |--------------------------------------------------------------------------
  4. | File and Directory Modes
  5. |--------------------------------------------------------------------------
  6. |
  7. | These prefs are used when checking and setting modes when working
  8. | with the file system. The defaults are fine on servers with proper
  9. | security, but you may wish (or even need) to change the values in
  10. | certain environments (Apache running a separate process for each
  11. | user, PHP under CGI with Apache suEXEC, etc.). Octal values should
  12. | always be used to set the mode correctly.
  13. |
  14. */
  15. define('FILE_READ_MODE', 0644);
  16. define('FILE_WRITE_MODE', 0666);
  17. define('DIR_READ_MODE', 0755);
  18. define('DIR_WRITE_MODE', 0777);
  19. /*
  20. |--------------------------------------------------------------------------
  21. | File Stream Modes
  22. |--------------------------------------------------------------------------
  23. |
  24. | These modes are used when working with fopen()/popen()
  25. |
  26. */
  27. define('FOPEN_READ', 'rb');
  28. define('FOPEN_READ_WRITE', 'r+b');
  29. define('FOPEN_WRITE_CREATE_DESTRUCTIVE', 'wb'); // truncates existing file data, use with care
  30. define('FOPEN_READ_WRITE_CREATE_DESTRUCTIVE', 'w+b'); // truncates existing file data, use with care
  31. define('FOPEN_WRITE_CREATE', 'ab');
  32. define('FOPEN_READ_WRITE_CREATE', 'a+b');
  33. define('FOPEN_WRITE_CREATE_STRICT', 'xb');
  34. define('FOPEN_READ_WRITE_CREATE_STRICT', 'x+b');
  35. /* End of file constants.php */
  36. /* Location: ./system/application/config/constants.php */