Home
last modified time | relevance | path

Searched refs:key (Results 1001 – 1025 of 1053) sorted by relevance

1...<<414243

/PHP-7.4/ext/intl/tests/
H A Ddateformat_format_variant3.phpt106 foreach( $localtime_entry as $key => $value){
107 $res_str .= "$key : '$value' , ";
H A Ddateformat_format_variant2.phpt106 foreach( $localtime_entry as $key => $value){
107 $res_str .= "$key : '$value' , ";
/PHP-7.4/ext/mysqlnd/
H A Dmysqlnd_connection.c1001 MYSQLND_METHOD(mysqlnd_conn_data, ssl_set)(MYSQLND_CONN_DATA * const conn, const char * key, const …
1010 ret = (PASS == vio->data->m.set_client_option(vio, MYSQLND_OPT_SSL_KEY, key) &&
1803 const char * const key,
1825 DBG_INF_FMT("Adding [%s][%s]", key, value);
1831 str = zend_string_init(key, strlen(key), 1);
1836 str = zend_string_init(key, strlen(key), 0);
H A Dmysqlnd.h167 #define mysqlnd_ssl_set(conn, key, cert, ca, capath, cipher) ((conn)->data)->m->ssl_set((conn)->dat… argument
/PHP-7.4/
H A DUPGRADING26 array (such as $null["key"]) will now generate a notice. This does not
234 $array['key'] ??= computeDefault();
236 if (!isset($array['key'])) {
237 $array['key'] = computeDefault();
517 . Added openssl_x509_verify(mixed cert, mixed key) function that verifies the
518 signature of the certificate using a public key. A wrapper around the
624 a single question mark to the database and e.g. use the PostgreSQL JSON key
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_insert_id.phpt88 return the AUTO_INCREMENT key from the first of the inserted rows. This allows
/PHP-7.4/win32/build/
H A Dconfutils.js2182 var ignore_key = function(key) { argument
2186 if (ignores[k] == key) {
2439 function handle_analyzer_makefile_flags(fd, key, val) argument
2449 if (key.match("CFLAGS")) {
2481 } else if (key.match("BASE_INCLUDES")) {
2498 key += "_ANALYZER";
2501 fd.WriteLine(key + "=" + val + " ");
/PHP-7.4/ext/spl/
H A Dphp_spl.c784 zend_string *key; in PHP_FUNCTION() local
786 ZEND_HASH_FOREACH_STR_KEY_PTR(SPL_G(autoload_functions), key, alfi) { in PHP_FUNCTION()
806 add_next_index_str(return_value, zend_string_copy(key)); in PHP_FUNCTION()
/PHP-7.4/Zend/
H A Dzend_exceptions.c493 #define TRACE_APPEND_KEY(key) do { \ argument
494 tmp = zend_hash_find(ht, key); \
498 ZSTR_VAL(key)); \
H A Dzend_virtual_cwd.h206 zend_ulong key; member
H A Dzend_closures.c425 …tion *zend_closure_get_method(zend_object **object, zend_string *method, const zval *key) /* {{{ */ in zend_closure_get_method() argument
431 return zend_std_get_method(object, method, key); in zend_closure_get_method()
H A Dzend_compile.c5951 key = NULL; in zend_begin_func_decl()
5953 zend_tmp_string_release(key); in zend_begin_func_decl()
5961 LITERAL_STR(opline->op1, key); in zend_begin_func_decl()
5968 zend_add_literal_string(&key); in zend_begin_func_decl()
6592 zend_string *key = NULL; in zend_compile_class_decl() local
6594 zend_tmp_string_release(key); in zend_compile_class_decl()
6599 zend_add_literal_string(&key); in zend_compile_class_decl()
7155 zend_string *key; in zend_try_ct_eval_array() local
7158 if (key) { in zend_try_ct_eval_array()
7178 zval *key = zend_ast_get_zval(key_ast); in zend_try_ct_eval_array() local
[all …]
/PHP-7.4/ext/standard/tests/array/
H A Deach_variation1.phpt6 * Description: Return the currently pointed key..value pair in the passed array,
/PHP-7.4/ext/oci8/tests/
H A Dbug43497.phpt91 $stmt = oci_parse($c, "create table bug43497_tab (id number primary key, xml xmltype)");
/PHP-7.4/ext/phar/
H A Dphar.c101 char *key, *lasts, *end; in phar_split_cache_list() local
130 for (key = php_strtok_r(tmp, ds, &lasts); in phar_split_cache_list()
131 key; in phar_split_cache_list()
132 key = php_strtok_r(NULL, ds, &lasts)) { in phar_split_cache_list()
134 end = strchr(key, DEFAULT_DIR_SEPARATOR); in phar_split_cache_list()
136 len = end - key; in phar_split_cache_list()
138 len = strlen(key); in phar_split_cache_list()
141 if (SUCCESS == phar_open_from_filename(key, len, NULL, 0, 0, &phar, NULL)) { in phar_split_cache_list()
/PHP-7.4/main/
H A Dfastcgi.c1735 zend_string *key = zend_string_init(name, name_len, 1); local
1737 GC_MAKE_PERSISTENT_LOCAL(key);
1739 zend_hash_add(&fcgi_mgmt_vars, key, &zvalue);
1740 zend_string_release_ex(key, 1);
/PHP-7.4/ext/soap/
H A Dphp_http.c837 zend_string *key; in make_http_soap_request() local
842 ZEND_HASH_FOREACH_STR_KEY_VAL(Z_ARRVAL_P(cookies), key, data) { in make_http_soap_request()
843 if (key && Z_TYPE_P(data) == IS_ARRAY) { in make_http_soap_request()
856 smart_str_append(&soap_headers, key); in make_http_soap_request()
/PHP-7.4/ext/sockets/tests/
H A Dsocket_strerror.phpt150 string(26) "Required key not available"
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dcopy_from.phpt17 $db->exec('CREATE TABLE test (a integer not null primary key, b text, c integer)');
/PHP-7.4/ext/standard/tests/mail/
H A Dmail_basic7.phpt176 Warning: mail(): Multiple header key must be numeric index (foo1) in %s on line 84
/PHP-7.4/ext/pdo_dblib/
H A Ddblib_driver.c508 if(strcmp(vars[5].optval,tdsver[i].key) == 0) { in pdo_dblib_handle_factory()
/PHP-7.4/docs/
H A Drelease-process.md438 2. Create a GPG key for your @php.net address and publish it by editing
441 sign your key. Publish your public key to pgp.mit.edu with:
/PHP-7.4/ext/intl/calendar/
H A Dcalendar_class.cpp301 ZEND_ARG_INFO(0, key)
/PHP-7.4/ext/standard/tests/file/
H A Dparse_ini_file.phpt176 ; Expected:error, reserved key words must not be used as keys for ini file
/PHP-7.4/ext/standard/tests/general_functions/
H A Dparse_ini_string_001.phpt174 ; Expected:error, reserved key words must not be used as keys for ini file

Completed in 156 milliseconds

1...<<414243