Home
last modified time | relevance | path

Searched refs:chr (Results 201 – 225 of 252) sorted by relevance

1234567891011

/php-src/ext/openssl/tests/
H A Dbug77390.phpt93 if ($data !== '' && $data[0] === chr(23)) {
/php-src/ext/standard/tests/strings/
H A Dstrrev_variation2.phpt32 'Hello'.chr(0).'World',
H A Dstr_split_variation4.phpt25 'with \0 and ".chr(0)."null chars', //for binary safe
H A Dstrstr.phpt11 var_dump( md5(strstr("te".chr(0)."st", chr(0))) );
H A Dstrcspn_variation12.phpt21 chr(0).chr(0),
22 chr(0)."hello\0world".chr(0),
23 "hello".chr(0)."world",
H A Dsprintf_f_2.phpt43 var_dump(sprintf("%%c = '%c'", $c)); // print the ascii character, same as chr() function
H A Dstrncasecmp_variation6.phpt15 …$str2 = decbin( ord( chr($ASCII) ) ); //Getting equivalent ASCII value for the character in binar…
24 $str2 = decbin( ord( chr(256) ));
H A Dstrpos.phpt13 var_dump( strpos("te".chr(0)."st", chr(0)) );
/php-src/ext/date/tests/
H A Dgh10747-4.phpt26 var_dump($i, str_replace(chr(0), '!', $s), $u);
/php-src/ext/mbstring/tests/
H A Dutf_encodings.phpt980 testValidString(chr($byte), "\x00\x00\x00" . chr($byte), 'UTF-7', 'UTF-32BE');
982 testValidString(chr($byte), "\x00\x00\x00" . chr($byte), 'UTF-7', 'UTF-32BE');
984 testValidString(chr($byte), "\x00\x00\x00" . chr($byte), 'UTF-7', 'UTF-32BE');
1011 if (strpos("'(),-./:?\x00 \t\r\n", chr($i)) !== false)
1014 …testValidString('+' . encode("\x00" . chr($i), 'UTF-16BE') . '-', "\x00\x00\x00" . chr($i), 'UTF-7…
1099 $corrupted = substr($encoded, 0, 2) . chr(ord($encoded[2]) + 1);
H A Dutf8_mobile_encodings.phpt64 return chr($value);
68 return chr($value >> 16) . pack('n', $value & 0xFFFF);
H A Dgb18030_encoding.phpt271 return chr($byte4) . chr($byte3) . chr($byte2) . chr($byte1);
H A Dsjis2004_encoding.phpt25 $sjis = ($bytes < 256) ? chr($bytes) : pack('n', $bytes);
H A Dmb_substr_count.phpt32 var_dump(mb_substr_count("", chr(0)));
H A Dcp932_encoding.phpt26 $cp932 = chr($i) . chr($j);
H A Dmb_detect_encoding.phpt142 $str = chr(239).chr(187).chr(191).chr(195).chr(180); // UTF-8 BOM followed by ô
/php-src/ext/filter/tests/
H A D043.phpt10 var_dump(filter_var(chr($i), FILTER_UNSAFE_RAW, array("flags" => $flags)));
/php-src/Zend/tests/float_to_int/
H A Dwarnings_string_float_literals.phpt36 var_dump(chr('60.5'));
H A Dwarnings_string_float_vars.phpt55 var_dump(chr($cp));
H A Dwarnings_float_literals.phpt53 var_dump(chr(60.5));
/php-src/ext/mysqli/tests/
H A Dmysqli_real_escape_string_big5.phpt63 . chr(0) . "���H�U���e")))
H A Dmysqli_fetch_array_many_rows.phpt18 $id, mysqli_real_escape_string($link, chr(65 + ($id % 26)))))) {
H A Dmysqli_stmt_bind_param.phpt195 $ret .= chr(mt_rand(65, 90));
301 func_mysqli_stmt_bind_datatype($link, $engine, "s", "BINARY(1)", chr(0), 650);
306 func_mysqli_stmt_bind_datatype($link, $engine, "s", "VARBINARY(1)", chr(0), 690);
311 func_mysqli_stmt_bind_datatype($link, $engine, "s", "TINYBLOB", chr(0), 730);
/php-src/ext/ctype/tests/
H A Dctype_alnum_variation2.phpt17 if (ctype_alnum(chr($i))) {
/php-src/ext/random/tests/03_randomizer/methods/
H A DgetBytesFromString_fast_path.phpt13 fn ($byte) => chr($byte),

Completed in 141 milliseconds

1234567891011