1 /* 2 +----------------------------------------------------------------------+ 3 | PHP Version 7 | 4 +----------------------------------------------------------------------+ 5 | Copyright (c) 1997-2018 The PHP Group | 6 +----------------------------------------------------------------------+ 7 | This source file is subject to version 3.01 of the PHP license, | 8 | that is bundled with this package in the file LICENSE, and is | 9 | available through the world-wide-web at the following url: | 10 | http://www.php.net/license/3_01.txt | 11 | If you did not receive a copy of the PHP license and are unable to | 12 | obtain it through the world-wide-web, please send a note to | 13 | license@php.net so we can mail you a copy immediately. | 14 +----------------------------------------------------------------------+ 15 | Author: | 16 +----------------------------------------------------------------------+ 17 */ 18 19 #include "basic_functions.h" 20 #include "php_math.h" 21 #include "php_string.h" 22 #include "base64.h" 23 #include "php_dir.h" 24 #include "php_dns.h" 25 #include "php_mail.h" 26 #include "md5.h" 27 #include "sha1.h" 28 #include "hrtime.h" 29 #include "html.h" 30 #include "exec.h" 31 #include "file.h" 32 #include "php_ext_syslog.h" 33 #include "php_filestat.h" 34 #include "php_browscap.h" 35 #include "pack.h" 36 #include "datetime.h" 37 #include "microtime.h" 38 #include "url.h" 39 #include "pageinfo.h" 40 #include "cyr_convert.h" 41 #include "php_link.h" 42 #include "fsock.h" 43 #include "php_image.h" 44 #include "php_iptc.h" 45 #include "info.h" 46 #include "uniqid.h" 47 #include "php_var.h" 48 #include "quot_print.h" 49 #include "dl.h" 50 #include "php_crypt.h" 51 #include "head.h" 52 #include "php_lcg.h" 53 #include "php_metaphone.h" 54 #include "php_output.h" 55 #include "php_array.h" 56 #include "php_assert.h" 57 #include "php_versioning.h" 58 #include "php_ftok.h" 59 #include "php_type.h" 60 #include "php_password.h" 61 #include "php_random.h" 62 63 #include "php_version.h" 64 #define PHP_STANDARD_VERSION PHP_VERSION 65 66 #define phpext_standard_ptr basic_functions_module_ptr 67 PHP_MINIT_FUNCTION(standard_filters); 68 PHP_MSHUTDOWN_FUNCTION(standard_filters); 69 70 71 /* 72 * Local variables: 73 * tab-width: 4 74 * c-basic-offset: 4 75 * End: 76 */ 77