Home
last modified time | relevance | path

Searched refs:ch (Results 76 – 100 of 168) sorted by relevance

1234567

/PHP-5.5/ext/curl/tests/
H A Dbug46739.phpt11 $ch = curl_init('http://127.0.0.1:9/');
13 curl_exec($ch);
14 $info = curl_getinfo($ch);
H A Dcurl_copy_handle_variation1.phpt15 $ch = curl_init();
18 curl_setopt($ch, CURLOPT_URL, 'http://www.example.com/');
21 $ch2 = curl_copy_handle($ch);
26 var_dump(curl_getinfo($ch) === curl_getinfo($ch2));
H A Dbug46711.phpt11 $ch = curl_init();
18 curl_setopt( $ch, CURLOPT_AUTOREFERER , TRUE );
21 curl_setopt( $ch, $option, $value );
H A Dcurl_setopt_CURLOPT_FOLLOWLOCATION_open_basedir.phpt14 $ch = curl_init();
15 $succes = curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
16 curl_close($ch);
H A Dbug65458.phpt9 $ch = curl_init();
12 curl_setopt($ch, CURLOPT_HTTPHEADER, [ "SOAPAction: getItems" ]);
16 curl_close($ch);
H A Dbug48207.phpt37 $ch = curl_init($url);
39 curl_setopt($ch, CURLOPT_FILE, $fp);
40 curl_exec($ch);
41 curl_close($ch);
H A Dcurl_basic_014.phpt9 $ch = curl_init();
10 var_dump($ch);
H A Dbug68089.phpt11 $ch = curl_init();
12 var_dump(curl_setopt($ch, CURLOPT_URL, $url));
H A Dcurl_basic_015.phpt10 $ch = curl_init($url);
11 var_dump($url == curl_getinfo($ch, CURLINFO_EFFECTIVE_URL));
H A Dcurl_basic_016.phpt15 $ch = curl_init();
16 $info = curl_getinfo($ch);
/PHP-5.5/ext/standard/
H A Dcrc32.h28 #define CRC32(crc, ch) (crc = (crc >> 8) ^ crc32tab[(crc ^ (ch)) & 0xff]) argument
H A Dfile.c1910 while (ch < end) { in php_fputcsv()
1919 ch++; in php_fputcsv()
2354 ch = md->lc; in php_next_meta_token()
2358 switch (ch) { in php_next_meta_token()
2376 compliment = ch; in php_next_meta_token()
2378 …while (!php_stream_eof(md->stream) && (ch = php_stream_getc(md->stream)) && ch != compliment && ch in php_next_meta_token()
2386 if (ch == '<' || ch == '>') { in php_next_meta_token()
2389 md->lc = ch; in php_next_meta_token()
2411 if (isalnum(ch)) { in php_next_meta_token()
2423 if (!isalpha(ch) && ch != '-') { in php_next_meta_token()
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd_gd2.c57 int ch; in _gd2GetHeader() local
66 ch = gdGetC(in); in _gd2GetHeader()
67 if (ch == EOF) { in _gd2GetHeader()
70 id[i] = ch; in _gd2GetHeader()
346 int ch; in gdImageCreateFromGd2Ctx() local
348 ch = 0; in gdImageCreateFromGd2Ctx()
575 ch = 0; in gdImageCreateFromGd2PartCtx()
580 ch = 0; in gdImageCreateFromGd2PartCtx()
586 ch = (ch << 8) + chunkBuf[chunkPos++]; in gdImageCreateFromGd2PartCtx()
587 ch = (ch << 8) + chunkBuf[chunkPos++]; in gdImageCreateFromGd2PartCtx()
[all …]
H A Dgdft.c319 ch <<= 6; in gdTcl_UtfToUniChar()
323 *chPtr = ch; in gdTcl_UtfToUniChar()
927 ch = *next;
930 if (ch == '\r') {
940 if (ch == '\n') {
967 ch |= 0xf000;
993 if (ch & 1) {
1002 ch = (ch - 0x21) / 2 + 0x81;
1004 ch += 0x40;
1007 ch = (ch << 8) + jiscode;
[all …]
H A Dgd_gd.c193 int ch; in gdImageCreateFromGdCtx() local
194 ch = gdGetC(in); in gdImageCreateFromGdCtx()
195 if (ch == EOF) { in gdImageCreateFromGdCtx()
199 im->pixels[y][x] = ch; in gdImageCreateFromGdCtx()
/PHP-5.5/TSRM/
H A Dtsrm_strtok_r.c6 static inline int in_character_class(char ch, const char *delim) in in_character_class() argument
9 if (*delim == ch) { in in_character_class()
/PHP-5.5/ext/ereg/regex/
H A Ddebug.c232 regchar(ch) in regchar() argument
233 int ch; in regchar()
237 if (isprint(ch) || ch == ' ')
238 sprintf(buf, "%c", ch);
240 sprintf(buf, "\\%o", ch);
H A Dengine.c835 assert(!NONCHAR(ch) || ch != (unsigned char)OPND(s));
840 if (ch == BOL || ch == BOLEOL)
844 if (ch == EOL || ch == BOLEOL)
848 if (ch == BOW)
852 if (ch == EOW)
861 if (!NONCHAR(ch) && CHIN(cs, ch))
938 int ch;
949 if (ch != '\0')
997 pchar(ch) in pchar() argument
998 int ch; in pchar()
[all …]
H A Dengine.ih12 static states step(register struct re_guts *g, sopno start, sopno stop, register states bef, int ch
23 static void print(struct match *m, unsigned char *caption, states st, int ch, FILE *d);
29 static unsigned char *pchar(int ch);
H A Dregcomp.c830 othercase(ch) in othercase() argument
831 int ch; in othercase()
834 if (isupper(ch))
839 return(ch);
849 bothcases(p, ch) in bothcases() argument
851 int ch;
857 assert(othercase(ch) != ch); /* p_bracket() would recurse */
860 bracket[0] = ch;
874 ordinary(p, ch) in ordinary() argument
876 register int ch;
[all …]
/PHP-5.5/ext/standard/tests/file/
H A Dbug53241.phpt13 $ch = curl_init('http://www.yahoo.com/');
14 var_dump(curl_setopt($ch, CURLOPT_FILE, $fh));
/PHP-5.5/ext/gd/
H A Dgd_ctx.c31 unsigned char ch = (unsigned char) c; in _php_image_output_putc() local
33 php_write(&ch, 1 TSRMLS_CC); in _php_image_output_putc()
50 char ch = (char) c; in _php_image_stream_putc() local
53 php_stream_write(stream, &ch, 1); in _php_image_stream_putc()
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split_variation12.phpt20 $str = "This is str to check with heredoc ending.This\tcontains,\nspeci@! ch@r$ __with wrong \k esc…
90 speci@! ch@r$ __with wrong \k escape char 222."
93 speci@! ch@r$ __with wrong \k escape char 222."
96 specai@! ch@r$ a__with wroang \k escaape char 22a2.a"
99 specThis is simple heredoc stringi@! ch@r$ This is simple heredoc string__with wroThis is simple he…
114 heredoci@! ch@r$ This is to check chunk_split
127 specThis checks with $, %, &, charsi@! ch@r$ This checks with $, %, &, chars__with wroThis checks w…
136 white space charsi@! ch@r$ This checks and
144 spec"To check " in heredoc".I'm sure it'll \work!i@! ch@r$ "To check " in heredoc".I'm sure it'll \…
H A Dstrrchr_variation5.phpt39 ch
53 ch
H A Dchunk_split_variation8.phpt26 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
72 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test
77 It has _speci@l ch@r$ 222:::2 !!!Now \k as escape char::: to test
82 It has _speci@l ch@r$ 2222 !!!Now \k as escape char to test

Completed in 140 milliseconds

1234567