Home
last modified time | relevance | path

Searched refs:code (Results 51 – 75 of 2471) sorted by relevance

12345678910>>...99

/PHP-7.4/Zend/
H A Dzend_vm_gen.php862 $code = "{\n\tfprintf(stderr, \"$name\\n\");\n" . substr($code, 1);
900 $code);
934 $code);
990 $code = preg_replace('/'.preg_quote($match[0],'/').'/', "\$D$n", $code);
1019 $code = preg_replace("/\\\$D$n/", $dcl, $code);
1025 $code = preg_replace('/^\s*;\s*$/m', '', $code);
1028 $code = preg_replace('/[ \t]+\n/m', "\n", $code);
1030 out($f, $code);
1131 $code =
1141 $code =
[all …]
/PHP-7.4/ext/soap/tests/
H A Dfault_warning.phpt2 SoapFault class: Invalid Fault code warning given? Can't be an empty string, an array of not 2 elem…
19 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
21 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
25 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
27 Warning: SoapFault::SoapFault(): Invalid fault code in %s on line %d
/PHP-7.4/ext/tokenizer/tests/
H A Dtoken_get_all_variation18.phpt2 Test token_get_all() function : usage variations - with HTML code
9 * Source code: ext/tokenizer/tokenizer.c
13 * Testing token_get_all() with source string containing HTML code with PHP
27 echo "php code with HTML";
94 string(20) ""php code with HTML""
H A Dbug76437.phpt12 foreach ($tests as [$code, $index]) {
13 $open_tag1 = token_get_all($code)[$index];
14 $open_tag2 = token_get_all($code, TOKEN_PARSE)[$index];
/PHP-7.4/sapi/cli/tests/
H A D017.phpt54 foreach ($codes as $key => $code) {
56 $code = escapeshellarg($code);
57 echo `echo $code | "$php" -a`, "\n";
106 Parse error: syntax error, unexpected ')' in php shell code on line 1
/PHP-7.4/ext/standard/tests/file/windows_mb_path/
H A Dbug75063_utf8.phpt31 $code = <<<CODE
47 $code_fn = "code.php";
48 file_put_contents($code_fn, $code);
50 print(shell_exec(getenv('TEST_PHP_EXECUTABLE') . " -nf code.php"));
76 string(8) "code.php"
H A Dbug75063_cp1251.phpt33 $code = <<<CODE
49 $code_fn = "code.php";
50 file_put_contents($code_fn, $code);
52 print(shell_exec(getenv('TEST_PHP_EXECUTABLE') . " -n -d default_charset=cp1251 -f code.php"));
75 string(8) "code.php"
H A Dbug61315.phpt49 Active code page: 65001
54 Active code page: %d
55 Active code page: 65001
60 Active code page: %d
/PHP-7.4/ext/pcre/pcre2lib/
H A Dpcre2_dfa_match.c748 PCRE2_SPTR code; in internal_dfa_match() local
908 do { code += GET(code, 1); } while (*code == OP_ALT); in internal_dfa_match()
918 code += GET(code, 1); in internal_dfa_match()
927 code += GET(code, 1); in internal_dfa_match()
931 code += GET(code, 1); in internal_dfa_match()
939 code += 1 + GET(code, 2); in internal_dfa_match()
940 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_match()
946 code += 1 + GET(code, 2); in internal_dfa_match()
947 while (*code == OP_ALT) code += GET(code, 1); in internal_dfa_match()
2587 ecode = code + GET(code, 1); in internal_dfa_match()
[all …]
H A Dpcre2_substring.c80 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_copy_byname()
168 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_get_byname()
275 entrysize = pcre2_substring_nametable_scan(match_data->code, stringname, in pcre2_substring_length_byname()
329 if (stringnumber > match_data->code->top_bracket) in pcre2_substring_length_bynumber()
480 pcre2_substring_nametable_scan(const pcre2_code *code, PCRE2_SPTR stringname, in pcre2_substring_nametable_scan() argument
484 uint16_t top = code->name_count; in pcre2_substring_nametable_scan()
485 uint16_t entrysize = code->name_entry_size; in pcre2_substring_nametable_scan()
486 PCRE2_SPTR nametable = (PCRE2_SPTR)((char *)code + sizeof(pcre2_real_code)); in pcre2_substring_nametable_scan()
498 lastentry = nametable + entrysize * (code->name_count - 1); in pcre2_substring_nametable_scan()
541 pcre2_substring_number_from_name(const pcre2_code *code, in pcre2_substring_number_from_name() argument
[all …]
/PHP-7.4/sapi/phpdbg/tests/
H A Dstdin_001.phpt16 prompt> [Breakpoint #0 added at Standard input code:3]
17 prompt> [Breakpoint #0 at Standard input code:3, hits: 1]
22 prompt> [Breakpoint #0 at Standard input code:3, hits: 1]
/PHP-7.4/ext/ffi/tests/
H A Dutils.inc3 function ffi_cdef($code, $lib)
6 return FFI::cdef($code, $lib);
8 return FFI::cdef($code);
/PHP-7.4/Zend/tests/
H A Dbug35655.phpt12 $code = '
19 highlight_string($code);
22 <code><span style="color: #000000">
25 </code>
H A Dnowdoc_013.phpt12 $code = <<<'EOF'
20 highlight_string($code);
23 <code><span style="color: #000000">
26 </code>
/PHP-7.4/ext/pcntl/tests/
H A D002.phpt28 echo "code === SI_USER || SI_NOINFO\n";
30 var_dump(($siginfo['code'] === SI_USER) || ($siginfo['code'] === SI_NOINFO));
32 var_dump($siginfo['code'] === SI_USER);
40 echo "code === CLD_KILLED\n";
41 var_dump($siginfo['code'] === CLD_KILLED);
82 code === SI_USER || SI_NOINFO
86 code === CLD_KILLED
/PHP-7.4/sapi/cgi/tests/
H A D006.phpt16 $code = '
30 file_put_contents($filename, $code);
35 $code = '
45 file_put_contents($filename, $code);
/PHP-7.4/Zend/tests/type_declarations/
H A Dweak_include_strict.phpt2 strict_types=0 code including strict_types=1 code
6 // implicitly weak code
/PHP-7.4/tests/strings/
H A D004.phpt16 <code><span style="color: #000000">
18 </code>
19 [<code><span style="color: #000000">
21 </code>]
/PHP-7.4/ext/standard/
H A Dpack.c254 char code = format[i++]; in PHP_FUNCTION() local
275 switch ((int) code) { in PHP_FUNCTION()
307 if (code == 'Z') { in PHP_FUNCTION()
384 switch ((int) code) { in PHP_FUNCTION()
467 switch ((int) code) { in PHP_FUNCTION()
541 if (code == 'n') { in PHP_FUNCTION()
543 } else if (code == 'v') { in PHP_FUNCTION()
568 if (code == 'N') { in PHP_FUNCTION()
570 } else if (code == 'V') { in PHP_FUNCTION()
588 if (code == 'J') { in PHP_FUNCTION()
[all …]
/PHP-7.4/ext/standard/tests/file/
H A Drename_variation13-win32.phpt16 * Source code: ext/standard/file.c
78 Warning: rename(-1,%safile.tmp): The system cannot find the file specified. (code: 2) in %srename_v…
83 Warning: rename(1,%safile.tmp): The system cannot find the file specified. (code: 2) in %srename_va…
87 …The parameter is incorrect|The system cannot find the path specified)\. \(code: \d+\))%r in %srena…
90 …The parameter is incorrect|The system cannot find the path specified)\. \(code: \d+\))%r in %srena…
108 Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect. (code: 123)…
111 Warning: rename(%s): The filename, directory name, or volume label syntax is incorrect. (code: 123)…
133 Warning: rename(%safile.tmp,/no/such/file/dir): The system cannot find the path specified. (code: 3…
136 Warning: rename(/no/such/file/dir,%safile.tmp): The system cannot find the path specified. (code: 3…
140 Warning: rename(%safile.tmp,php/php): The system cannot find the path specified. (code: 3) in %sren…
[all …]
/PHP-7.4/ext/soap/tests/bugs/
H A Dbug50997.phpt10 $params = array('code'=>'foo');
16 …"http://www.example.org/service2/"><SOAP-ENV:Body><ns1:NewOperation><code>foo</code></ns1:NewOpera…
/PHP-7.4/ext/gd/libgd/
H A Dgd_gif_in.c434 int code, incode, i; in LWZReadByte_() local
471 if (code == sd->clear_code) { in LWZReadByte_()
485 } else if (code == sd->end_code) { in LWZReadByte_()
499 incode = code; in LWZReadByte_()
506 if (code >= sd->max_code) { in LWZReadByte_()
508 code = sd->oldcode; in LWZReadByte_()
511 while (code >= sd->clear_code) { in LWZReadByte_()
516 *sd->sp++ = sd->table[1][code]; in LWZReadByte_()
517 if (code == sd->table[0][code]) { in LWZReadByte_()
520 code = sd->table[0][code]; in LWZReadByte_()
[all …]
/PHP-7.4/ext/zlib/tests/
H A Dgzgetss.gz
/PHP-7.4/ext/mysqli/tests/
H A Dbug72489.phpt20 if (!$link->query("CREATE TABLE bug72489 (id INT(6) UNSIGNED AUTO_INCREMENT PRIMARY KEY, code VARCH…
24 $seedSQL = "INSERT INTO bug72489 (`code`) VALUES ('code1'), ('code2'), ('code3');";
31 if (!$stmt = $link->prepare("SELECT id, code FROM bug72489")) {
36 if (!$stmt->bind_result($subRow['id'], $subRow['code']) || !$stmt->execute()) {
42 $subRow['code'] = $testArray;
/PHP-7.4/ext/standard/tests/strings/
H A Daddcslashes_002.phpt9 /* charlist "\0..\37" would escape all characters with ASCII code between 0 and 31 */
10 echo "\n*** Testing addcslashes() with ASCII code between 0 and 31 ***\n";
28 *** Testing addcslashes() with ASCII code between 0 and 31 ***

Completed in 85 milliseconds

12345678910>>...99