xref: /PHP-7.4/ext/mysqli/mysqli_fe.h (revision 248f9cf3)
1 /*
2   +----------------------------------------------------------------------+
3   | PHP Version 7                                                        |
4   +----------------------------------------------------------------------+
5   | Copyright (c) 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: Georg Richter <georg@php.net>                                |
16             Andrey Hristov <andrey@php.net>                              |
17   +----------------------------------------------------------------------+
18 */
19 
20 #ifndef MYSQLI_FE_H
21 #define MYSQLI_FE_H
22 
23 PHP_FUNCTION(mysqli);
24 PHP_FUNCTION(mysqli_affected_rows);
25 PHP_FUNCTION(mysqli_autocommit);
26 PHP_FUNCTION(mysqli_begin_transaction);
27 PHP_FUNCTION(mysqli_change_user);
28 PHP_FUNCTION(mysqli_character_set_name);
29 PHP_FUNCTION(mysqli_set_charset);
30 PHP_FUNCTION(mysqli_close);
31 PHP_FUNCTION(mysqli_commit);
32 PHP_FUNCTION(mysqli_connect);
33 PHP_FUNCTION(mysqli_connect_errno);
34 PHP_FUNCTION(mysqli_connect_error);
35 PHP_FUNCTION(mysqli_data_seek);
36 PHP_FUNCTION(mysqli_debug);
37 PHP_FUNCTION(mysqli_dump_debug_info);
38 PHP_FUNCTION(mysqli_errno);
39 PHP_FUNCTION(mysqli_error);
40 PHP_FUNCTION(mysqli_error_list);
41 PHP_FUNCTION(mysqli_fetch_all);
42 PHP_FUNCTION(mysqli_fetch_array);
43 PHP_FUNCTION(mysqli_fetch_assoc);
44 PHP_FUNCTION(mysqli_fetch_object);
45 PHP_FUNCTION(mysqli_fetch_field);
46 PHP_FUNCTION(mysqli_fetch_fields);
47 PHP_FUNCTION(mysqli_fetch_field_direct);
48 PHP_FUNCTION(mysqli_fetch_lengths);
49 PHP_FUNCTION(mysqli_fetch_row);
50 PHP_FUNCTION(mysqli_field_count);
51 PHP_FUNCTION(mysqli_field_seek);
52 PHP_FUNCTION(mysqli_field_tell);
53 PHP_FUNCTION(mysqli_free_result);
54 PHP_FUNCTION(mysqli_get_client_stats);
55 PHP_FUNCTION(mysqli_get_connection_stats);
56 PHP_FUNCTION(mysqli_get_charset);
57 PHP_FUNCTION(mysqli_get_client_info);
58 PHP_FUNCTION(mysqli_get_client_version);
59 PHP_FUNCTION(mysqli_get_host_info);
60 PHP_FUNCTION(mysqli_get_links_stats);
61 PHP_FUNCTION(mysqli_get_proto_info);
62 PHP_FUNCTION(mysqli_get_server_info);
63 PHP_FUNCTION(mysqli_get_server_version);
64 PHP_FUNCTION(mysqli_get_warnings);
65 PHP_FUNCTION(mysqli_info);
66 PHP_FUNCTION(mysqli_insert_id);
67 PHP_FUNCTION(mysqli_init);
68 PHP_FUNCTION(mysqli_init_method);
69 PHP_FUNCTION(mysqli_kill);
70 PHP_FUNCTION(mysqli_link_construct);
71 PHP_FUNCTION(mysqli_set_local_infile_default);
72 PHP_FUNCTION(mysqli_set_local_infile_handler);
73 PHP_FUNCTION(mysqli_more_results);
74 PHP_FUNCTION(mysqli_multi_query);
75 PHP_FUNCTION(mysqli_next_result);
76 PHP_FUNCTION(mysqli_num_fields);
77 PHP_FUNCTION(mysqli_num_rows);
78 PHP_FUNCTION(mysqli_options);
79 PHP_FUNCTION(mysqli_ping);
80 PHP_FUNCTION(mysqli_poll);
81 PHP_FUNCTION(mysqli_prepare);
82 PHP_FUNCTION(mysqli_query);
83 PHP_FUNCTION(mysqli_stmt_result_metadata);
84 PHP_FUNCTION(mysqli_report);
85 PHP_FUNCTION(mysqli_read_query_result);
86 PHP_FUNCTION(mysqli_real_connect);
87 PHP_FUNCTION(mysqli_real_query);
88 PHP_FUNCTION(mysqli_real_escape_string);
89 PHP_FUNCTION(mysqli_reap_async_query);
90 PHP_FUNCTION(mysqli_rollback);
91 PHP_FUNCTION(mysqli_row_seek);
92 PHP_FUNCTION(mysqli_select_db);
93 PHP_FUNCTION(mysqli_stmt_attr_get);
94 PHP_FUNCTION(mysqli_stmt_attr_set);
95 PHP_FUNCTION(mysqli_stmt_bind_param);
96 PHP_FUNCTION(mysqli_stmt_bind_result);
97 PHP_FUNCTION(mysqli_stmt_execute);
98 PHP_FUNCTION(mysqli_stmt_field_count);
99 PHP_FUNCTION(mysqli_stmt_init);
100 PHP_FUNCTION(mysqli_stmt_prepare);
101 PHP_FUNCTION(mysqli_stmt_fetch);
102 PHP_FUNCTION(mysqli_stmt_param_count);
103 PHP_FUNCTION(mysqli_stmt_send_long_data);
104 PHP_FUNCTION(mysqli_sqlstate);
105 PHP_FUNCTION(mysqli_ssl_set);
106 PHP_FUNCTION(mysqli_stat);
107 PHP_FUNCTION(mysqli_refresh);
108 PHP_FUNCTION(mysqli_savepoint);
109 PHP_FUNCTION(mysqli_release_savepoint);
110 PHP_FUNCTION(mysqli_stmt_affected_rows);
111 PHP_FUNCTION(mysqli_stmt_close);
112 PHP_FUNCTION(mysqli_stmt_data_seek);
113 PHP_FUNCTION(mysqli_stmt_errno);
114 PHP_FUNCTION(mysqli_stmt_error);
115 PHP_FUNCTION(mysqli_stmt_error_list);
116 PHP_FUNCTION(mysqli_stmt_free_result);
117 PHP_FUNCTION(mysqli_stmt_get_result);
118 PHP_FUNCTION(mysqli_stmt_get_warnings);
119 PHP_FUNCTION(mysqli_stmt_reset);
120 PHP_FUNCTION(mysqli_stmt_insert_id);
121 PHP_FUNCTION(mysqli_stmt_more_results);
122 PHP_FUNCTION(mysqli_stmt_next_result);
123 PHP_FUNCTION(mysqli_stmt_num_rows);
124 PHP_FUNCTION(mysqli_stmt_sqlstate);
125 PHP_FUNCTION(mysqli_stmt_store_result);
126 PHP_FUNCTION(mysqli_store_result);
127 PHP_FUNCTION(mysqli_thread_id);
128 PHP_FUNCTION(mysqli_thread_safe);
129 PHP_FUNCTION(mysqli_use_result);
130 PHP_FUNCTION(mysqli_warning_count);
131 
132 PHP_FUNCTION(mysqli_stmt_construct);
133 PHP_FUNCTION(mysqli_result_construct);
134 PHP_FUNCTION(mysqli_driver_construct);
135 PHP_METHOD(mysqli_warning,__construct);
136 
137 #endif /* MYSQLI_FE_H */
138