Home
last modified time | relevance | path

Searched refs:user (Results 901 – 925 of 960) sorted by relevance

1...<<313233343536373839

/PHP-7.4/ext/standard/tests/array/
H A Darray_uintersect_variation1.phpt6 … which are present in all the other arguments. Data is compared by using an user-supplied callback.
H A Darray_uintersect_variation2.phpt6 … which are present in all the other arguments. Data is compared by using an user-supplied callback.
H A Darray_uintersect_variation4.phpt6 … which are present in all the other arguments. Data is compared by using an user-supplied callback.
H A Darray_diff_uassoc_variation1.phpt7 * user supplied callback function
H A Darray_diff_uassoc_variation2.phpt7 * user supplied callback function
H A Darray_udiff_assoc_variation1.phpt6 …s but do additional checks whether the keys are equal. Keys are compared by user supplied function.
H A Darray_udiff_assoc_variation2.phpt6 …s but do additional checks whether the keys are equal. Keys are compared by user supplied function.
H A Darray_udiff_assoc_variation4.phpt6 …s but do additional checks whether the keys are equal. Keys are compared by user supplied function.
H A Darray_udiff_uassoc_variation1.phpt6 …ional checks whether the keys are equal. Keys and elements are compared by user supplied functions.
H A Darray_udiff_uassoc_variation2.phpt6 …ional checks whether the keys are equal. Keys and elements are compared by user supplied functions.
H A Darray_udiff_uassoc_variation5.phpt6 …ional checks whether the keys are equal. Keys and elements are compared by user supplied functions.
H A Darray_udiff_variation1.phpt6 …ch are not present in any of the others arguments. Elements are compared by user supplied function.
/PHP-7.4/
H A DREADME.md82 Depending on your permissions and prefix, `make install` may need super user
/PHP-7.4/Zend/
H A Dzend.h180 } user; member
H A Dzend_builtin_functions.c1807 zval internal, user; in ZEND_FUNCTION() local
1817 array_init(&user); in ZEND_FUNCTION()
1826 add_next_index_str(&user, zend_string_copy(key)); in ZEND_FUNCTION()
1832 zend_hash_str_add_new(Z_ARRVAL_P(return_value), "user", sizeof("user")-1, &user); in ZEND_FUNCTION()
H A Dzend_opcode.c338 if (ce->info.user.doc_comment) { in destroy_zend_class()
339 zend_string_release_ex(ce->info.user.doc_comment, 0); in destroy_zend_class()
/PHP-7.4/ext/opcache/
H A Dzend_file_cache.c679 SERIALIZE_STR(ce->info.user.filename);
680 SERIALIZE_STR(ce->info.user.doc_comment);
1380 UNSERIALIZE_STR(ce->info.user.filename);
1381 UNSERIALIZE_STR(ce->info.user.doc_comment);
/PHP-7.4/ext/ftp/
H A Dphp_ftp.c445 char *user, *pass; in PHP_FUNCTION() local
448 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "rss", &z_ftp, &user, &user_len, &pass, &pass_len) == F… in PHP_FUNCTION()
457 if (!ftp_login(ftp, user, user_len, pass, pass_len)) { in PHP_FUNCTION()
/PHP-7.4/ext/ftp/tests/
H A D007.phpt14 var_dump(ftp_login($ftp, 'user', 'pass'));
/PHP-7.4/ext/imap/
H A Dphp_imap.c103 ZEND_ARG_INFO(0, user)
1174 zend_string *mailbox, *user, *passwd; in php_imap_do_open() local
1181 if (zend_parse_parameters(argc, "PSS|lla", &mailbox, &user, in php_imap_do_open()
1251 IMAPG(imap_user) = estrndup(ZSTR_VAL(user), ZSTR_LEN(user)); in php_imap_do_open()
5186 PHP_IMAP_EXPORT void mm_login(NETMBX *mb, char *user, char *pwd, long trial) in mm_login() argument
5189 if (*mb->user) { in mm_login()
5190 strlcpy (user, mb->user, MAILTMPLEN); in mm_login()
5192 strlcpy (user, IMAPG(imap_user), MAILTMPLEN); in mm_login()
/PHP-7.4/ext/standard/
H A Durl_scanner_ex.re129 /* Use user supplied host whitelist */
246 if (url_parts->user) {
247 smart_str_appends(dest, ZSTR_VAL(url_parts->user));
/PHP-7.4/ext/soap/
H A Dphp_http.c1221 if (phpurl->user) phpurl->user = zend_string_copy(phpurl->user); in make_http_soap_request()
/PHP-7.4/ext/mysqli/
H A Dmysqli_api.c614 char *user, *password, *dbname; in PHP_FUNCTION() local
621 …ND_NUM_ARGS(), getThis(), "Osss!", &mysql_link, mysqli_link_class_entry, &user, &user_len, &passwo… in PHP_FUNCTION()
631 rc = mysqlnd_change_user_ex(mysql->mysql, user, password, dbname, FALSE, (size_t) password_len); in PHP_FUNCTION()
633 rc = mysql_change_user(mysql->mysql, user, password, dbname); in PHP_FUNCTION()
/PHP-7.4/ext/oci8/
H A Dphp_oci8_int.h431 int php_oci_password_change(php_oci_connection *connection, char *user, int user_len, char *pass_ol…
/PHP-7.4/ext/reflection/
H A Dphp_reflection.c302 if (ce->type == ZEND_USER_CLASS && ce->info.user.doc_comment) { in _class_string()
303 smart_str_append_printf(str, "%s%s", indent, ZSTR_VAL(ce->info.user.doc_comment)); in _class_string()
361 smart_str_append_printf(str, "%s @@ %s %d-%d\n", indent, ZSTR_VAL(ce->info.user.filename), in _class_string()
362 ce->info.user.line_start, ce->info.user.line_end); in _class_string()
4027 RETURN_STR_COPY(ce->info.user.filename); in ZEND_METHOD()
4045 RETURN_LONG(ce->info.user.line_start); in ZEND_METHOD()
4063 RETURN_LONG(ce->info.user.line_end); in ZEND_METHOD()
4080 if (ce->type == ZEND_USER_CLASS && ce->info.user.doc_comment) { in ZEND_METHOD()
4081 RETURN_STR_COPY(ce->info.user.doc_comment); in ZEND_METHOD()

Completed in 93 milliseconds

1...<<313233343536373839