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