Home
last modified time | relevance | path

Searched refs:details (Results 1 – 25 of 124) sorted by relevance

12345

/PHP-7.2/ext/intl/tests/
H A Didn_uts46_basic.phpt14 echo "all ok, no details:", "\n";
18 echo "all ok, no details, transitional:", "\n";
21 echo "all ok, with details:", "\n";
26 echo "reverse, ok, with details:", "\n";
30 all ok, no details:
32 all ok, no details, transitional:
34 all ok, with details:
44 reverse, ok, with details:
H A Didn_uts46_errors.phpt27 echo "with error, but no details arg:", "\n";
30 echo "with error, with details arg:", "\n";
35 echo "with error, with details arg, contextj:", "\n";
69 with error, but no details arg:
71 with error, with details arg:
81 with error, with details arg, contextj:
/PHP-7.2/ext/openssl/tests/
H A Dopenssl_pkey_export_basic.phpt21 $details = openssl_pkey_get_details(openssl_pkey_get_private($output));
22 var_dump(OPENSSL_KEYTYPE_EC === $details['type']);
27 $details = openssl_pkey_get_details(openssl_pkey_get_private($output, 'passphrase'));
28 var_dump(OPENSSL_KEYTYPE_EC === $details['type']);
33 // The details are the same for a public or private key, expect the private key parameter 'd
35 var_dump(array_diff_assoc($details['ec'], $detailsPKey['ec']));
40 $details = openssl_pkey_get_details(openssl_pkey_get_private('file://' . $tempname));
41 var_dump(OPENSSL_KEYTYPE_EC === $details['type']);
H A Dbug55259.phpt16 $details = openssl_pkey_get_details($dh);
17 var_dump(bin2hex($details['dh']['p']));
18 var_dump($details['dh']['g']);
19 var_dump(strlen($details['dh']['pub_key']) > 0);
20 var_dump(strlen($details['dh']['priv_key']) > 0);
H A Dopenssl_pkey_new_basic.phpt38 $details = openssl_pkey_get_details($rsa);
39 $rsa_details = $details['rsa'];
67 $details = openssl_pkey_get_details($dsa);
68 $dsa_details = $details['dsa'];
85 $details = openssl_pkey_get_details($dh);
86 $dh_details = $details['dh'];
H A Dbug60632.phpt17 $details = openssl_pkey_get_details($pkey);
18 $test_pubkey = $details['key'];
H A Dbug73478.phpt7 $details = [
13 $opensslKeyResource = openssl_pkey_new(['dh' => $details]);
/PHP-7.2/ext/pgsql/tests/
H A Dbug72028.phpt15 pg_query("CREATE TABLE $table (value TEXT, details TEXT);");
17 $sql = "INSERT INTO $table (value, details) VALUES ($1, $2)";
43 ["details"]=>
49 ["details"]=>
/PHP-7.2/ext/soap/
H A Dphp_encoding.c492 if (encode->details.ns) { in master_to_xml_int()
525 if (encode->details.ns) { in master_to_zval_int()
1480 (sdlType->encode->details.sdl_type->encode->details.type != IS_ARRAY && in to_zval_object_ex()
3601 get_type_str(node, enc->details.ns, enc->details.type_str, type); in get_array_type()
3640 if (t->details.ns) { in delete_encoder()
3641 efree(t->details.ns); in delete_encoder()
3643 if (t->details.type_str) { in delete_encoder()
3646 if (t->details.map) { in delete_encoder()
3655 if (t->details.ns) { in delete_encoder_persistent()
3656 free(t->details.ns); in delete_encoder_persistent()
[all …]
H A Dphp_packet_soap.c184 zval details; in parse_packet_soap() local
187 ZVAL_UNDEF(&details); in parse_packet_soap()
210 master_to_zval(&details, NULL, tmp); in parse_packet_soap()
234 master_to_zval(&details, NULL, tmp); in parse_packet_soap()
237 …e, faultstring ? ZSTR_VAL(faultstring) : NULL, faultactor ? ZSTR_VAL(faultactor) : NULL, &details); in parse_packet_soap()
244 if (Z_REFCOUNTED(details)) { in parse_packet_soap()
245 Z_DELREF(details); in parse_packet_soap()
H A Dsoap.c280 ZEND_ARG_INFO(0, details)
1077 new_enc->details.type = enc->details.type; in soap_create_typemap()
1078 new_enc->details.ns = estrdup(enc->details.ns); in soap_create_typemap()
1079 new_enc->details.type_str = estrdup(enc->details.type_str); in soap_create_typemap()
1080 new_enc->details.sdl_type = enc->details.sdl_type; in soap_create_typemap()
1083 new_enc->details.type = enc->details.type; in soap_create_typemap()
1096 } else if (enc->details.map && Z_TYPE(enc->details.map->to_xml) != IS_UNDEF) { in soap_create_typemap()
1097 ZVAL_COPY(&new_enc->details.map->to_xml, &enc->details.map->to_xml); in soap_create_typemap()
1103 ZVAL_COPY(&new_enc->details.map->to_zval, &enc->details.map->to_zval); in soap_create_typemap()
2002 zval* details = NULL; local
[all …]
/PHP-7.2/ext/pcre/pcrelib/
H A DCOPYING3 Please see the file LICENCE in the PCRE distribution for licensing details.
H A DNON-UNIX-USE5 NON-AUTOTOOLS-BUILD for details of how to build PCRE without using autotools.
/PHP-7.2/ext/standard/tests/strings/
H A Dsscanf_basic1.phpt20 // extract details using short format
25 // extract details using long format
H A Dsscanf_basic2.phpt20 // extract details using short format
25 // extract details using long format
H A Dsscanf_basic3.phpt17 // extract details using short format
22 // extract details using long format
H A Dsscanf_basic4.phpt17 // extract details using short format
22 // extract details using long format
H A Dsscanf_basic7.phpt17 // extract details using short format
22 // extract details using long format
H A Dsscanf_basic6.phpt23 // extract details using short format
28 // extract details using long format
H A Dsscanf_basic5.phpt18 // extract details using short format
25 // extract details using long format
H A Dsscanf_basic8.phpt18 // extract details using short format
25 // extract details using long format
/PHP-7.2/ext/oci8/tests/
H A Dconnect.inc3 require("details.inc");
H A Ddebug.phpt8 require(dirname(__FILE__)."/details.inc");
H A Dtestping.phpt10 require(dirname(__FILE__).'/details.inc');
/PHP-7.2/ext/posix/tests/
H A Dbug75696.phpt2 Bug #75696 (posix_getgrnam fails to print details of group)

Completed in 58 milliseconds

12345