Home
last modified time | relevance | path

Searched refs:res (Results 401 – 425 of 570) sorted by relevance

1...<<11121314151617181920>>...23

/PHP-5.5/ext/mbstring/tests/
H A Dmb_stristr_variation3.phpt120 $res = mb_stristr($haystack, $needle, $value, $encoding);
121 if ($res === false) {
122 var_dump($res);
125 var_dump(bin2hex($res));
H A Dmb_strrchr_variation3.phpt120 $res = mb_strrchr($haystack, $needle, $value, $encoding);
121 if ($res === false) {
122 var_dump($res);
125 var_dump(bin2hex($res));
H A Dmb_strrichr_variation3.phpt120 $res = mb_strrichr($haystack, $needle, $value, $encoding);
121 if ($res === false) {
122 var_dump($res);
125 var_dump(bin2hex($res));
/PHP-5.5/ext/standard/tests/file/
H A Dtouch_variation5.phpt76 $res = touch($path);
77 if ($res === true) {
114 $res = @mkdir($path);
115 if ($res == true) {
136 $res = touch($path,0,0);
H A Dtouch_variation5-win32.phpt76 $res = touch($path);
77 if ($res === true) {
114 $res = @mkdir($path);
115 if ($res == true) {
136 $res = touch($path,0,0);
H A Dtouch_variation6-win32.phpt82 $res = touch($path);
83 if ($res === true) {
120 $res = @mkdir($path);
121 if ($res == true) {
142 $res = touch($path,0,0);
/PHP-5.5/main/
H A Dnetwork.c177 struct addrinfo hints, *res, *sai; in php_network_getaddresses() local
213 if ((n = getaddrinfo(host, NULL, &hints, &res))) { in php_network_getaddresses()
221 } else if (res == NULL) { in php_network_getaddresses()
231 sai = res; in php_network_getaddresses()
236 sai = res; in php_network_getaddresses()
245 freeaddrinfo(res); in php_network_getaddresses()
1065 char *res; local
1069 reslen = spprintf(&res, 0, "tcp://%s:%d", host, port);
1071 stream = php_stream_xport_create(res, reslen, REPORT_ERRORS,
1074 efree(res);
/PHP-5.5/ext/spl/tests/
H A Dspl_iterator_apply_error.phpt17 $res = iterator_apply($it, 'test');
/PHP-5.5/ext/xml/tests/
H A Dbug26528.phpt11 $res = xml_parse_into_struct($parser,$sample,$vals,$index);
H A Dxml_parser_create_ns_variation1.phpt95 $res = xml_parser_create_ns($value);
96 var_dump($res);
97 if ($res !== false) {
98 xml_parser_free($res);
H A Dxml_parser_create_variation1.phpt95 $res = xml_parser_create($value);
96 var_dump($res);
97 if ($res !== false) {
98 xml_parser_free($res);
/PHP-5.5/ext/xmlwriter/examples/
H A Dxmlwriter_file.php6 $res = xmlwriter_set_indent_string($xw, ' '); variable
/PHP-5.5/ext/gd/libgd/
H A Dwebpimg.c632 const vpx_codec_err_t res = vpx_codec_control_(enc, id, value); in codec_ctl() local
633 if (res != VPX_CODEC_OK) { in codec_ctl()
669 vpx_codec_err_t res; in VPXEncode() local
687 res = vpx_codec_enc_config_default(iface, &cfg, 0); in VPXEncode()
688 if (res != VPX_CODEC_OK) { in VPXEncode()
696 res = vpx_codec_enc_init(&enc, iface, &cfg, 0); in VPXEncode()
698 if (res == VPX_CODEC_OK) { in VPXEncode()
718 res = vpx_codec_encode(&enc, &img, 0, 1, 0, VPX_DL_BEST_QUALITY); in VPXEncode()
720 if (res == VPX_CODEC_OK) { in VPXEncode()
/PHP-5.5/ext/soap/tests/
H A Dclassmap001.phpt51 …/soap/encoding/"><SOAP-ENV:Body><ns1:dotestResponse><res xsi:type="xsd:string">Classname: book</re…
/PHP-5.5/ext/pdo/tests/
H A Dpdo_017.phpt48 $res = $select->fetchColumn();
49 return "Counted $res rows after $action.\n";
/PHP-5.5/ext/standard/tests/network/
H A Dip2long_variation1.phpt50 $res = fopen(__FILE__,'r');
99 'resource' => $res,
109 fclose($res);
H A Dlong2ip_variation1.phpt55 $res = fopen(__FILE__,'r');
102 'resource' => $res,
112 fclose($res);
/PHP-5.5/ext/mbstring/
H A Dphp_unicode.c309 int res = php_unicode_is_prop( in php_unicode_convert_case() local
313 if (res) { in php_unicode_convert_case()
320 if (res) { in php_unicode_convert_case()
/PHP-5.5/ext/mysqli/tests/
H A Dconnect.inc133 if (($res = $link->query("SHOW VARIABLES LIKE 'have_innodb'")) &&
134 ($row = $res->fetch_row()) &&
142 if ($res = $link->query("SHOW ENGINES")) {
143 while ($row = $res->fetch_assoc()) {
H A Dmysqli_expire_password.phpt101 if ($res = $link->query("SELECT id FROM test WHERE id = 1"))
102 var_dump($res->fetch_assoc());
113 if ($res = $link->query("SELECT id FROM test WHERE id = 1"))
114 var_dump($res->fetch_assoc());
H A Dmysqli_stmt_bind_param.phpt94 if (!($res = mysqli_query($link, "SELECT id, label FROM test WHERE id = " . $id)))
96 $row = mysqli_fetch_assoc($res);
99 mysqli_free_result($res);
135 if (!$res = mysqli_query($link, "SELECT id, label FROM test")) {
140 if (!$row = mysqli_fetch_assoc($res)) {
161 mysqli_free_result($res);
343 if (!$res = mysqli_query($link, "SELECT id, label FROM test WHERE id = 100"))
346 if (!$row = mysqli_fetch_assoc($res))
353 mysqli_free_result($res);
371 if (!$row = mysqli_fetch_assoc($res))
[all …]
/PHP-5.5/ext/zlib/tests/
H A Dgzopen_variation3.phpt114 $res = gzopen($filename, $mode, $value);
115 var_dump($res);
116 if ($res === true) {
117 gzclose($res);
/PHP-5.5/ext/iconv/tests/
H A Diconv_mime_decode_variation3.phpt102 $res = iconv_mime_decode($header, $mode, $input);
103 if ($res !== false) {
104 var_dump(bin2hex($res));
107 var_dump($res);
/PHP-5.5/sapi/roxen/
H A Droxen.c380 int res = 0; in php_roxen_sapi_send_headers() local
381 THREAD_SAFE_RUN(res = php_roxen_low_send_headers(sapi_headers TSRMLS_CC), "send headers"); in php_roxen_sapi_send_headers()
382 return res; in php_roxen_sapi_send_headers()
576 int res, len; in php_roxen_module_main() local
589 res = php_request_startup(TSRMLS_C); in php_roxen_module_main()
591 if(res == FAILURE) { in php_roxen_module_main()
/PHP-5.5/ext/fileinfo/libmagic/
H A Dfuncs.c447 char *res; in file_replace() local
465 res = php_pcre_replace_impl(pce, ms->o.buf, strlen(ms->o.buf), repl, in file_replace()
472 if (NULL == res) { in file_replace()
476 strncpy(ms->o.buf, res, res_len); in file_replace()
479 efree(res); in file_replace()

Completed in 62 milliseconds

1...<<11121314151617181920>>...23