Skip to content

Commit 2bfcd88

Browse files
committed
Remove now unnecessary PHP_FUNCTION() declarations
1 parent 51bc623 commit 2bfcd88

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+0
-748
lines changed

ext/standard/base64.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,6 @@
5757
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5858
*/
5959

60-
PHP_FUNCTION(base64_decode);
61-
PHP_FUNCTION(base64_encode);
62-
6360
#if (ZEND_INTRIN_AVX2_FUNC_PTR || ZEND_INTRIN_SSSE3_FUNC_PTR) && !ZEND_INTRIN_AVX2_NATIVE
6461
PHP_MINIT_FUNCTION(base64_intrin);
6562
#endif

ext/standard/basic_functions.h

Lines changed: 0 additions & 99 deletions
Original file line numberDiff line numberDiff line change
@@ -40,107 +40,8 @@ PHP_RINIT_FUNCTION(basic);
4040
PHP_RSHUTDOWN_FUNCTION(basic);
4141
PHP_MINFO_FUNCTION(basic);
4242

43-
PHP_FUNCTION(constant);
44-
PHP_FUNCTION(sleep);
45-
PHP_FUNCTION(usleep);
46-
#if HAVE_NANOSLEEP
47-
PHP_FUNCTION(time_nanosleep);
48-
PHP_FUNCTION(time_sleep_until);
49-
#endif
50-
PHP_FUNCTION(flush);
51-
#ifdef HAVE_INET_NTOP
52-
PHP_FUNCTION(inet_ntop);
53-
#endif
54-
#ifdef HAVE_INET_PTON
55-
PHP_FUNCTION(inet_pton);
56-
#endif
57-
PHP_FUNCTION(ip2long);
58-
PHP_FUNCTION(long2ip);
59-
60-
/* system functions */
61-
PHP_FUNCTION(getenv);
62-
PHP_FUNCTION(putenv);
63-
64-
PHP_FUNCTION(getopt);
65-
66-
PHP_FUNCTION(get_current_user);
67-
PHP_FUNCTION(set_time_limit);
68-
69-
PHP_FUNCTION(header_register_callback);
70-
71-
PHP_FUNCTION(get_cfg_var);
72-
73-
PHP_FUNCTION(error_log);
74-
PHP_FUNCTION(error_get_last);
75-
PHP_FUNCTION(error_clear_last);
76-
77-
PHP_FUNCTION(call_user_func);
78-
PHP_FUNCTION(call_user_func_array);
79-
PHP_FUNCTION(forward_static_call);
80-
PHP_FUNCTION(forward_static_call_array);
81-
82-
PHP_FUNCTION(register_shutdown_function);
83-
PHP_FUNCTION(highlight_file);
84-
PHP_FUNCTION(highlight_string);
85-
PHP_FUNCTION(php_strip_whitespace);
8643
ZEND_API void php_get_highlight_struct(zend_syntax_highlighter_ini *syntax_highlighter_ini);
8744

88-
PHP_FUNCTION(ini_get);
89-
PHP_FUNCTION(ini_get_all);
90-
PHP_FUNCTION(ini_set);
91-
PHP_FUNCTION(ini_restore);
92-
PHP_FUNCTION(get_include_path);
93-
PHP_FUNCTION(set_include_path);
94-
95-
PHP_FUNCTION(print_r);
96-
PHP_FUNCTION(fprintf);
97-
PHP_FUNCTION(vfprintf);
98-
99-
PHP_FUNCTION(connection_aborted);
100-
PHP_FUNCTION(connection_status);
101-
PHP_FUNCTION(ignore_user_abort);
102-
103-
PHP_FUNCTION(getservbyname);
104-
PHP_FUNCTION(getservbyport);
105-
PHP_FUNCTION(getprotobyname);
106-
PHP_FUNCTION(getprotobynumber);
107-
108-
PHP_FUNCTION(crc32);
109-
110-
PHP_FUNCTION(register_tick_function);
111-
PHP_FUNCTION(unregister_tick_function);
112-
#ifdef HAVE_GETLOADAVG
113-
PHP_FUNCTION(sys_getloadavg);
114-
#endif
115-
116-
PHP_FUNCTION(is_uploaded_file);
117-
PHP_FUNCTION(move_uploaded_file);
118-
119-
PHP_FUNCTION(net_get_interfaces);
120-
121-
/* From the INI parser */
122-
PHP_FUNCTION(parse_ini_file);
123-
PHP_FUNCTION(parse_ini_string);
124-
#if ZEND_DEBUG
125-
PHP_FUNCTION(config_get_hash);
126-
#endif
127-
128-
#if defined(PHP_WIN32)
129-
PHP_FUNCTION(sapi_windows_cp_set);
130-
PHP_FUNCTION(sapi_windows_cp_get);
131-
PHP_FUNCTION(sapi_windows_cp_is_utf8);
132-
PHP_FUNCTION(sapi_windows_cp_conv);
133-
PHP_FUNCTION(sapi_windows_set_ctrl_handler);
134-
PHP_FUNCTION(sapi_windows_generate_ctrl_event);
135-
#endif
136-
137-
PHP_FUNCTION(str_rot13);
138-
PHP_FUNCTION(stream_get_filters);
139-
PHP_FUNCTION(stream_filter_register);
140-
PHP_FUNCTION(stream_bucket_make_writeable);
141-
PHP_FUNCTION(stream_bucket_prepend);
142-
PHP_FUNCTION(stream_bucket_append);
143-
PHP_FUNCTION(stream_bucket_new);
14445
PHP_MINIT_FUNCTION(user_filters);
14546
PHP_RSHUTDOWN_FUNCTION(user_filters);
14647
PHP_RSHUTDOWN_FUNCTION(browscap);

ext/standard/datetime.h

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,6 @@
1818
#ifndef DATETIME_H
1919
#define DATETIME_H
2020

21-
#if HAVE_STRPTIME
22-
PHP_FUNCTION(strptime);
23-
#endif
24-
2521
PHPAPI char *php_std_date(time_t t);
2622

2723
#endif /* DATETIME_H */

ext/standard/exec.h

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,6 @@
1717
#ifndef EXEC_H
1818
#define EXEC_H
1919

20-
PHP_FUNCTION(system);
21-
PHP_FUNCTION(exec);
22-
PHP_FUNCTION(escapeshellcmd);
23-
PHP_FUNCTION(escapeshellarg);
24-
PHP_FUNCTION(passthru);
25-
PHP_FUNCTION(shell_exec);
26-
PHP_FUNCTION(proc_open);
27-
PHP_FUNCTION(proc_get_status);
28-
PHP_FUNCTION(proc_close);
29-
PHP_FUNCTION(proc_terminate);
30-
PHP_FUNCTION(proc_nice);
3120
PHP_MINIT_FUNCTION(proc_open);
3221
PHP_MINIT_FUNCTION(exec);
3322

ext/standard/file.h

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -22,46 +22,17 @@
2222
PHP_MINIT_FUNCTION(file);
2323
PHP_MSHUTDOWN_FUNCTION(file);
2424

25-
PHP_FUNCTION(tempnam);
26-
PHP_FUNCTION(tmpfile);
27-
PHP_FUNCTION(fopen);
2825
PHPAPI PHP_FUNCTION(fclose);
29-
PHP_FUNCTION(popen);
30-
PHP_FUNCTION(pclose);
3126
PHPAPI PHP_FUNCTION(feof);
3227
PHPAPI PHP_FUNCTION(fread);
3328
PHPAPI PHP_FUNCTION(fgetc);
3429
PHPAPI PHP_FUNCTION(fgets);
35-
PHP_FUNCTION(fscanf);
36-
PHP_FUNCTION(fgetcsv);
37-
PHP_FUNCTION(fputcsv);
3830
PHPAPI PHP_FUNCTION(fwrite);
3931
PHPAPI PHP_FUNCTION(fflush);
4032
PHPAPI PHP_FUNCTION(rewind);
4133
PHPAPI PHP_FUNCTION(ftell);
4234
PHPAPI PHP_FUNCTION(fseek);
43-
PHP_FUNCTION(mkdir);
44-
PHP_FUNCTION(rmdir);
4535
PHPAPI PHP_FUNCTION(fpassthru);
46-
PHP_FUNCTION(readfile);
47-
PHP_FUNCTION(umask);
48-
PHP_FUNCTION(rename);
49-
PHP_FUNCTION(unlink);
50-
PHP_FUNCTION(copy);
51-
PHP_FUNCTION(file);
52-
PHP_FUNCTION(file_get_contents);
53-
PHP_FUNCTION(file_put_contents);
54-
PHP_FUNCTION(get_meta_tags);
55-
PHP_FUNCTION(flock);
56-
PHP_FUNCTION(fd_set);
57-
PHP_FUNCTION(fd_isset);
58-
PHP_FUNCTION(realpath);
59-
#ifdef HAVE_FNMATCH
60-
PHP_FUNCTION(fnmatch);
61-
#endif
62-
PHP_FUNCTION(ftruncate);
63-
PHP_FUNCTION(fstat);
64-
PHP_FUNCTION(sys_get_temp_dir);
6536

6637
PHP_MINIT_FUNCTION(user_streams);
6738

ext/standard/fsock.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,5 @@
2323

2424
#include "php_network.h"
2525

26-
PHP_FUNCTION(fsockopen);
27-
PHP_FUNCTION(pfsockopen);
2826

2927
#endif /* FSOCK_H */

ext/standard/head.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,6 @@
2626
#define COOKIE_SAMESITE "; SameSite="
2727

2828
extern PHP_RINIT_FUNCTION(head);
29-
PHP_FUNCTION(header);
30-
PHP_FUNCTION(header_remove);
31-
PHP_FUNCTION(setcookie);
32-
PHP_FUNCTION(setrawcookie);
33-
PHP_FUNCTION(headers_sent);
34-
PHP_FUNCTION(headers_list);
35-
PHP_FUNCTION(http_response_code);
3629

3730
PHPAPI int php_header(void);
3831
PHPAPI int php_setcookie(zend_string *name, zend_string *value, time_t expires, zend_string *path, zend_string *domain, int secure, int httponly, zend_string *samesite, int url_encode);

ext/standard/hrtime.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ PHPAPI php_hrtime_t php_hrtime_current(void);
5151

5252
PHP_MINIT_FUNCTION(hrtime);
5353

54-
PHP_FUNCTION(hrtime);
55-
5654
END_EXTERN_C()
5755

5856
#endif /* HRTIME_H */

ext/standard/html.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,6 @@
4444

4545
void register_html_constants(INIT_FUNC_ARGS);
4646

47-
PHP_FUNCTION(htmlspecialchars);
48-
PHP_FUNCTION(htmlentities);
49-
PHP_FUNCTION(htmlspecialchars_decode);
50-
PHP_FUNCTION(html_entity_decode);
51-
PHP_FUNCTION(get_html_translation_table);
52-
5347
PHPAPI zend_string *php_escape_html_entities(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset);
5448
PHPAPI zend_string *php_escape_html_entities_ex(unsigned char *old, size_t oldlen, int all, int flags, char *hint_charset, zend_bool double_encode);
5549
PHPAPI zend_string *php_unescape_html_entities(zend_string *str, int all, int flags, char *hint_charset);

ext/standard/info.h

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,6 @@
5252
#define ZEND_LOGO_DATA_URI "data:image/png;base64,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"
5353

5454
BEGIN_EXTERN_C()
55-
PHP_FUNCTION(phpversion);
56-
PHP_FUNCTION(phpinfo);
57-
PHP_FUNCTION(phpcredits);
58-
PHP_FUNCTION(php_sapi_name);
59-
PHP_FUNCTION(php_uname);
60-
PHP_FUNCTION(php_ini_scanned_files);
61-
PHP_FUNCTION(php_ini_loaded_file);
6255
PHPAPI zend_string *php_info_html_esc(char *string);
6356
PHPAPI void php_info_html_esc_write(char *string, int str_len);
6457
PHPAPI void php_print_info_htmlhead(void);

ext/standard/iptc.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
*/
3030

3131
#include "php.h"
32-
#include "php_iptc.h"
3332
#include "ext/standard/head.h"
3433

3534
#include <sys/stat.h>

ext/standard/link.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@
4949
#include <errno.h>
5050
#include <ctype.h>
5151

52-
#include "php_link.h"
5352
#include "php_string.h"
5453

5554
#ifndef VOLUME_NAME_NT

ext/standard/md5.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
PHPAPI void make_digest(char *md5str, const unsigned char *digest);
2222
PHPAPI void make_digest_ex(char *md5str, const unsigned char *digest, int len);
2323

24-
PHP_FUNCTION(md5);
25-
PHP_FUNCTION(md5_file);
26-
2724
#include "ext/standard/basic_functions.h"
2825

2926
/*

ext/standard/metaphone.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
*/
2020

2121
#include "php.h"
22-
#include "php_metaphone.h"
2322

2423
static int metaphone(unsigned char *word, size_t word_len, zend_long max_phonemes, zend_string **phoned_word, int traditional);
2524

ext/standard/microtime.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
#include <stdio.h>
3737
#include <errno.h>
3838

39-
#include "microtime.h"
4039
#include "ext/date/php_date.h"
4140

4241
#define NUL '\0'

ext/standard/microtime.h

Lines changed: 0 additions & 28 deletions
This file was deleted.

ext/standard/pack.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,5 @@
1818
#define PACK_H
1919

2020
PHP_MINIT_FUNCTION(pack);
21-
PHP_FUNCTION(pack);
22-
PHP_FUNCTION(unpack);
2321

2422
#endif /* PACK_H */

ext/standard/pageinfo.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,6 @@
1717
#ifndef PAGEINFO_H
1818
#define PAGEINFO_H
1919

20-
PHP_FUNCTION(getmyuid);
21-
PHP_FUNCTION(getmygid);
22-
PHP_FUNCTION(getmypid);
23-
PHP_FUNCTION(getmyinode);
24-
PHP_FUNCTION(getlastmod);
25-
2620
PHPAPI void php_statpage(void);
2721
PHPAPI time_t php_getlastmod(void);
2822
extern zend_long php_getuid(void);

0 commit comments

Comments
 (0)