/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_newline.c | 95 return TRUE; in PRIV() 99 return TRUE; in PRIV() 116 return TRUE; in PRIV() 120 return TRUE; in PRIV() 126 return TRUE; in PRIV() 131 return TRUE; in PRIV() 138 return TRUE; in PRIV() 191 return TRUE; in PRIV() 195 return TRUE; in PRIV() 207 return TRUE; in PRIV() [all …]
|
/PHP-8.3/ext/standard/tests/strings/ |
H A D | md5raw.phpt | 5 echo bin2hex(md5("", TRUE))."\n"; 6 echo bin2hex(md5("a", TRUE))."\n"; 7 echo bin2hex(md5("abc", TRUE))."\n"; 8 echo bin2hex(md5("message digest", TRUE))."\n"; 9 echo bin2hex(md5("abcdefghijklmnopqrstuvwxyz", TRUE))."\n"; 10 echo bin2hex(md5("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", TRUE))."\n"; 11 …d5("12345678901234567890123456789012345678901234567890123456789012345678901234567890", TRUE))."\n";
|
H A D | sha1raw.phpt | 5 echo bin2hex(sha1("abc", TRUE))."\n"; 6 echo bin2hex(sha1("abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", TRUE))."\n"; 7 echo bin2hex(sha1("a", TRUE))."\n"; 8 echo bin2hex(sha1("0123456701234567012345670123456701234567012345670123456701234567", TRUE))."\n";
|
H A D | str_replace_variation2.phpt | 13 $subject = "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE\000 40 TRUE, 41 "TRUE", 68 string(181) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0 75 string(181) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0 82 string(186) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0 89 string(195) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0 96 string(186) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0 103 string(195) "Hello, world,0120333.3445-1.234567 NULL TRUE FALSE%0 117 string(193) "Hello, world,0120333.3445FOUND67 NULL TRUE FALSE%0 [all …]
|
H A D | vsprintf_basic4.phpt | 12 $arg1 = array(TRUE); 13 $arg2 = array(TRUE,FALSE); 14 $arg3 = array(TRUE,FALSE,TRUE);
|
H A D | vprintf_basic4.phpt | 12 $arg1 = array(TRUE); 13 $arg2 = array(TRUE,FALSE); 14 $arg3 = array(TRUE,FALSE,TRUE);
|
H A D | strstr.phpt | 21 "Hello world,012033 -3.3445 NULL TRUE FALSE\0 abcd\xxyz \x000 octal\n 41 TRUE, 42 "TRUE", 193 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal 198 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal 203 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal 208 string(66) "-3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal 213 string(54) "NULL TRUE FALSE%0 abcd\xxyz %00 octal 228 string(72) "12033 -3.3445 NULL TRUE FALSE%0 abcd\xxyz %00 octal 233 string(49) "TRUE FALSE%0 abcd\xxyz %00 octal [all …]
|
H A D | vfprintf_basic4.phpt | 12 $arg1 = array(TRUE); 13 $arg2 = array(TRUE,FALSE); 14 $arg3 = array(TRUE,FALSE,TRUE);
|
/PHP-8.3/ext/intl/tests/ |
H A D | dateformat_is_set_lenient.phpt | 25 $res_str .= "TRUE\n"; 32 $isLenient = TRUE; 35 $res_str .= "TRUE\n"; 43 $res_str .= "TRUE\n"; 54 $res_str .= "TRUE\n"; 62 $res_str .= "TRUE\n"; 80 After call to get_lenient : lenient= TRUE 82 Setting IntlDateFormatter with lenient = TRUE 83 After call to is_lenient : lenient= TRUE
|
/PHP-8.3/ext/session/tests/user_session_module/ |
H A D | bug71162.phpt | 14 return TRUE; 18 return TRUE; 27 return TRUE; 31 return TRUE; 35 return TRUE; 43 return TRUE; 48 return TRUE;
|
H A D | bug32330.phpt | 19 return TRUE; 25 return TRUE; 37 return TRUE; 43 return TRUE; 49 return TRUE;
|
/PHP-8.3/ext/standard/tests/array/ |
H A D | array_slice_variation7.phpt | 52 TRUE => 'uppert', 100 $preserve_keys = TRUE 124 $preserve_keys = TRUE 136 $preserve_keys = TRUE 148 $preserve_keys = TRUE 164 $preserve_keys = TRUE 180 $preserve_keys = TRUE 192 $preserve_keys = TRUE 204 $preserve_keys = TRUE 224 $preserve_keys = TRUE [all …]
|
H A D | bug41686.phpt | 10 array_slice($a, 1, 2, TRUE), 11 array_slice($a, 1, NULL, TRUE), 13 array_slice($b, 1, 2, TRUE), 14 array_slice($b, 1, NULL, TRUE)
|
H A D | array_keys_variation_004.phpt | 8 TRUE => TRUE, 21 $values = array(TRUE, FALSE, 1, 0, -1, "1", "0", "-1", NULL, array(), "php", ""); 23 var_dump(array_keys($types_arr, $value, TRUE));
|
H A D | in_array_variation4.phpt | 28 var_dump( in_array("Good", array(0,"hello"), TRUE) ); 33 var_dump( in_array(0, array("this")),TRUE ); 38 var_dump( in_array("this", array(0), TRUE) ); 42 array("a"=> TRUE, "b"=> TRUE, 43 array("c"=> TRUE, "d"=>TRUE) 50 var_dump( in_array('123abc', array(123), TRUE) ); // false in strict mode
|
H A D | array_search_variation4.phpt | 26 var_dump( array_search("Good", array(0,"hello"), TRUE) ); 31 var_dump( array_search(0, array("this")),TRUE ); 36 var_dump( array_search("this", array(0), TRUE) ); 40 array("a"=> TRUE, "b"=> TRUE, 41 array("c"=> TRUE, "d"=>TRUE) 48 var_dump( array_search('123abc', array(123), TRUE) ); // false in strict mode
|
H A D | 007.phpt | 8 echo '$a='.var_export($a,TRUE).";\n"; 9 echo '$b='.var_export($b,TRUE).";\n"; 10 echo '$c='.var_export($c,TRUE).";\n"; 44 echo '$a='.var_export($a,TRUE).";\n"; 45 echo '$b='.var_export($b,TRUE).";\n"; 46 echo '$c='.var_export($c,TRUE).";\n"; 82 echo '$a='.var_export($a,TRUE).";\n"; 83 echo '$b='.var_export($b,TRUE).";\n"; 84 echo '$c='.var_export($c,TRUE).";\n"; 99 echo '$a='.var_export($a,TRUE).";\n"; [all …]
|
/PHP-8.3/win32/build/ |
H A D | deplister.c | 31 return TRUE; in StatusRoutine() 35 return TRUE; in StatusRoutine() 37 return TRUE; in StatusRoutine()
|
/PHP-8.3/ext/curl/tests/ |
H A D | bug46711.phpt | 10 CURLOPT_AUTOREFERER => TRUE, 11 CURLOPT_BINARYTRANSFER => TRUE 14 curl_setopt( $ch, CURLOPT_AUTOREFERER , TRUE );
|
/PHP-8.3/ext/ldap/tests/ |
H A D | ldap_controls.phpt | 24 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(objectClass=organi… 27 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(objectClass=organi… 29 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(!(description=*))'… 33 …[['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filter' => '(!(description=*))'… 36 …ldap_delete($link, "o=test,$base", [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' =… 39 …p_rename($link, "o=test,$base", "o=test2", "", TRUE, [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' … 41 …test,$base", "o", "test", [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filte… 42 …test,$base", "o", "test", [['oid' => LDAP_CONTROL_ASSERT, 'iscritical' => TRUE, 'value' => ['filte… 50 …[['oid' => LDAP_CONTROL_VALUESRETURNFILTER, 'iscritical' => TRUE, 'value' => ['filter' => '(l=*her…
|
/PHP-8.3/ext/standard/tests/general_functions/ |
H A D | var_export_basic2.phpt | 10 "TRUE" => TRUE, 25 var_dump( var_export( $bool_value, TRUE) ); 40 -- Iteration: TRUE --
|
/PHP-8.3/ext/mbstring/tests/ |
H A D | mb_check_encoding.phpt | 10 $arr = [1234, 12.34, TRUE, FALSE, NULL, $str, 'key'=>$str, $str=>'val']; 15 $arr1 = [1234, 12.34, TRUE, FALSE, NULL, 'key'=>$str, $str=>'val']; 16 $arr2 = [1234, 12.34, TRUE, FALSE, NULL, $str=>'val'];
|
/PHP-8.3/Zend/tests/ |
H A D | concat_003.phpt | 11 $time = microtime(TRUE); 27 $time = microtime(TRUE); 34 $t = microtime(TRUE) - $time;
|
/PHP-8.3/win32/ |
H A D | console.c | 30 result = TRUE; in php_win32_console_fileno_is_console() 50 result = TRUE; in php_win32_console_fileno_has_vt100() 80 result = TRUE; in php_win32_console_fileno_set_vt100() 84 result = TRUE; in php_win32_console_fileno_set_vt100()
|
/PHP-8.3/ext/hash/tests/ |
H A D | hash_pbkdf2_basic.phpt | 10 echo "sha1(raw): " . bin2hex(hash_pbkdf2('sha1', 'password', 'salt', 1, 20, TRUE))."\n"; 12 …('sha1', 'passwordPASSWORDpassword', 'saltSALTsaltSALTsaltSALTsaltSALTsalt', 4096, 25, TRUE))."\n"; 15 echo "sha256(raw): " . bin2hex(hash_pbkdf2('sha256', 'password', 'salt', 1, 20, TRUE))."\n"; 17 …sha256', 'passwordPASSWORDpassword', 'saltSALTsaltSALTsaltSALTsaltSALTsalt', 4096, 40, TRUE))."\n";
|