Home
last modified time | relevance | path

Searched refs:info (Results 76 – 100 of 326) sorted by relevance

12345678910>>...14

/PHP-7.4/ext/curl/tests/
H A Dbug46739.phpt15 $info = curl_getinfo($ch);
17 echo (array_key_exists('content_type', $info)) ? "set" : "not set";
H A Dbug77535.phpt51 $info = curl_multi_info_read($this->mh);
52 while (false !== $info && $info['msg'] == CURLMSG_DONE) {
53 if (CURLMSG_DONE !== $info['msg']) {
H A Dcurl_basic_019.phpt17 $info = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
18 var_dump($url == $info);
H A Dcurl_basic_016.phpt16 $info = curl_getinfo($ch);
17 var_dump($info);
/PHP-7.4/ext/opcache/Optimizer/
H A Dzend_func_info.h48 #define ZEND_SET_FUNC_INFO(op_array, info) do { \ argument
50 *pinfo = info; \
H A Dzend_call_graph.h32 zend_ssa_var_info info; member
73 zend_call_info **zend_build_call_map(zend_arena **arena, zend_func_info *info, zend_op_array *op_ar…
/PHP-7.4/ext/snmp/tests/
H A Dsnmp-object-properties.phpt62 $session->info = array("blah" => 2);
63 var_dump($session->info);
71 ["info"]=>
98 ["info"]=>
125 ["info"]=>
155 ["info"]=>
197 Warning: main(): info property is read-only in %s on line %d
/PHP-7.4/ext/exif/tests/bug72735/
H A Dbug72682.phpt10 $info = exif_read_data(__DIR__ . DIRECTORY_SEPARATOR . $picture);
11 var_dump($info['MakerNote']);
/PHP-7.4/ext/spl/tests/
H A DSplDoublyLinkedList_debug-info.phpt2 Check that SplDoublyLinkedList returns debug info when print_r is used.
15 // Check the debug info
H A DSplFileInfo_getExtension_basic.phpt9 $info = new SplFileInfo($file . $ext);
10 var_dump($info->getExtension(), pathinfo($file . $ext, PATHINFO_EXTENSION));
/PHP-7.4/ext/opcache/tests/
H A Djmp_elim_001.phpt12 $info = array('arch' => $archName,
15 echo json_encode($info) . "\n";
H A Dphi_remove_001.phpt11 function getOnlyMPEGaudioInfoBruteForce($info) {
21 $previousvalidframe = $info['avdataoffset'];
22 while ($info) {
/PHP-7.4/ext/dba/tests/
H A Ddba_handlers.phpt7 die("info $HND handler used");
44 echo "Test 5 - full info\n";
68 Test 5 - full info
/PHP-7.4/ext/pdo_mysql/tests/
H A Dpdo_mysql_errorinfo.phpt17 $info = $obj->errorInfo();
18 $code = $info[0];
26 if (!isset($info[1]) || $info[1] == '')
28 if (!isset($info[2]) || $info[2] == '')
H A Dpdo_mysql_attr_multi_statements.phpt28 $info = $db->errorInfo();
29 var_dump($info[0]);
40 $info = $db->errorInfo();
41 var_dump($info[0]);
H A Dpecl_bug_5780.phpt25 $info = $logstmt->errorInfo();
26 unset($info[2]);
27 var_dump($info);
/PHP-7.4/ext/pdo_oci/tests/
H A Dpdo_oci_attr_client_info.phpt2 PDO_OCI: Attribute: Setting session client info
23 var_dump($dbh->setAttribute(PDO::OCI_ATTR_CLIENT_INFO, "some client info"));
50 CLIENT_INFO SET: string(16) "some client info"
/PHP-7.4/ext/fileinfo/tests/
H A Dbug71527-mb.phpt12 $info = finfo_file($finfo, __FILE__);
13 var_dump($info);
H A Dbug71527.phpt12 $info = finfo_file($finfo, __FILE__);
13 var_dump($info);
/PHP-7.4/ext/openssl/tests/
H A Dcve2013_4073.phpt8 $info = openssl_x509_parse($cert);
9 var_export($info['extensions']);
/PHP-7.4/ext/intl/idn/
H A Didn.c130 UIDNAInfo info = UIDNA_INFO_INITIALIZER; in php_intl_idn_to_46() local
141 ZSTR_VAL(buffer), buffer_capac, &info, &status); in php_intl_idn_to_46()
151 ZSTR_VAL(buffer), buffer_capac, &info, &status); in php_intl_idn_to_46()
162 if (info.errors == 0) { in php_intl_idn_to_46()
171 sizeof("isTransitionalDifferent")-1, info.isTransitionalDifferent); in php_intl_idn_to_46()
172 add_assoc_long_ex(idna_info, "errors", sizeof("errors")-1, (zend_long)info.errors); in php_intl_idn_to_46()
/PHP-7.4/ext/pcre/tests/
H A Dpreg_grep_basic.phpt9 $array = array('HTTP://WWW.EXAMPLE.COM', '/index.html', '/info/stat/', 'http://test.uk.com/index/ht…
25 string(11) "/info/stat/"
43 string(11) "/info/stat/"
59 string(11) "/info/stat/"
/PHP-7.4/ext/ffi/tests/
H A Dbug78270_1.phpt11 $info = ob_get_clean();
12 if (preg_match('/Compiler => .*clang.*/', $info)) die("skip not for clang");
/PHP-7.4/sapi/fpm/fpm/
H A Dfpm_sockets.c489 struct tcp_info info; in fpm_socket_get_listening_queue() local
490 socklen_t len = sizeof(info); in fpm_socket_get_listening_queue()
492 if (0 > getsockopt(sock, IPPROTO_TCP, TCP_INFO, &info, &len)) { in fpm_socket_get_listening_queue()
497 if (info.__tcpi_sacked == 0) { in fpm_socket_get_listening_queue()
502 *cur_lq = info.__tcpi_unacked; in fpm_socket_get_listening_queue()
506 *max_lq = info.__tcpi_sacked; in fpm_socket_get_listening_queue()
510 if (info.tcpi_sacked == 0) { in fpm_socket_get_listening_queue()
515 *cur_lq = info.tcpi_unacked; in fpm_socket_get_listening_queue()
519 *max_lq = info.tcpi_sacked; in fpm_socket_get_listening_queue()
/PHP-7.4/ext/phar/
H A Dshortarc.php135 $info = self::_unpack($m);
136 $f = $info['c'];
175 foreach ($info['m'] as $path => $file) {
215 $info = unpack('V', substr($m, 0, 4));
224 for ($i = 0; $i < $info[1]; $i++) {

Completed in 35 milliseconds

12345678910>>...14