php_standard.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. +----------------------------------------------------------------------+
  3. | Copyright (c) The PHP Group |
  4. +----------------------------------------------------------------------+
  5. | This source file is subject to version 3.01 of the PHP license, |
  6. | that is bundled with this package in the file LICENSE, and is |
  7. | available through the world-wide-web at the following url: |
  8. | https://www.php.net/license/3_01.txt |
  9. | If you did not receive a copy of the PHP license and are unable to |
  10. | obtain it through the world-wide-web, please send a note to |
  11. | license@php.net so we can mail you a copy immediately. |
  12. +----------------------------------------------------------------------+
  13. | Author: |
  14. +----------------------------------------------------------------------+
  15. */
  16. #include "basic_functions.h"
  17. #include "php_math.h"
  18. #include "php_string.h"
  19. #include "base64.h"
  20. #include "php_dir.h"
  21. #include "php_dns.h"
  22. #include "php_mail.h"
  23. #include "md5.h"
  24. #include "sha1.h"
  25. #include "hrtime.h"
  26. #include "html.h"
  27. #include "exec.h"
  28. #include "file.h"
  29. #include "php_ext_syslog.h"
  30. #include "php_filestat.h"
  31. #include "php_browscap.h"
  32. #include "pack.h"
  33. #include "datetime.h"
  34. #include "url.h"
  35. #include "pageinfo.h"
  36. #include "fsock.h"
  37. #include "php_image.h"
  38. #include "info.h"
  39. #include "php_var.h"
  40. #include "quot_print.h"
  41. #include "dl.h"
  42. #include "php_crypt.h"
  43. #include "head.h"
  44. #include "php_lcg.h"
  45. #include "php_output.h"
  46. #include "php_array.h"
  47. #include "php_assert.h"
  48. #include "php_versioning.h"
  49. #include "php_password.h"
  50. #include "php_random.h"
  51. #include "php_version.h"
  52. #define PHP_STANDARD_VERSION PHP_VERSION
  53. #define phpext_standard_ptr basic_functions_module_ptr
  54. PHP_MINIT_FUNCTION(standard_filters);
  55. PHP_MSHUTDOWN_FUNCTION(standard_filters);