Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 6568) sorted by last modified time

12345678910>>...263

/PHP-5.5/win32/
H A Dphp5dll.dsp534 SOURCE=..\ext\standard\string.c
H A Dphp5dllts.dsp1968 SOURCE=..\ext\standard\string.c
H A Dsendmail.c665 static int addToHeader(char **header_buffer, const char *specifier, char *string) in addToHeader() argument
667 …fer = erealloc(*header_buffer, strlen(*header_buffer) + strlen(specifier) + strlen(string) + 1))) { in addToHeader()
670 sprintf(*header_buffer + strlen(*header_buffer), specifier, string); in addToHeader()
H A Dfnmatch.c64 for (stringstart = string;;) in fnmatch()
71 if (*string == EOS) in fnmatch()
76 (string == stringstart || in fnmatch()
79 ++string; in fnmatch()
88 (string == stringstart || in fnmatch()
101 if ((string = strchr(string, '/')) == NULL) in fnmatch()
112 ++string; in fnmatch()
116 if (*string == EOS) in fnmatch()
123 ++string; in fnmatch()
134 if (c == *string) in fnmatch()
[all …]
H A Dfnmatch.h52 PHPAPI int fnmatch(const char *pattern, const char *string, int flags);
H A Dinstall.txt1381 configuration directive and the string value. PHP constants in the
/PHP-5.5/tests/security/
H A Dopen_basedir_realpath.phpt55 string(%d) "%s\test\ok"
56 string(%d) "%s\test\ok\ok.txt"
57 string(%d) "%s\test\ok\ok.txt"
58 string(%d) "%s\test\ok\ok.txt"
59 string(%d) "%s\test\ok\ok.txt"
H A Dopen_basedir_scandir.phpt87 string(1) "."
89 string(2) ".."
91 string(6) "ok.txt"
95 string(1) "."
97 string(2) ".."
99 string(6) "ok.txt"
103 string(1) "."
105 string(2) ".."
107 string(6) "ok.txt"
H A Dopen_basedir_tempnam.phpt68 string(%d) "%s"
70 string(%d) "%s"
72 string(%d) "%s"
/PHP-5.5/tests/strings/
H A D001.phpt72 $string = "string12345";
73 $tests++; if (substr($string, 2, 10) == "ring12345") { $ok++; }
74 $tests++; if (substr($string, 4, 7) == "ng12345") { $ok++; }
75 $tests++; if (substr($string, 4) == "ng12345") { $ok++; }
76 $tests++; if (substr($string, 10, 2) == "5") { $ok++; }
77 $tests++; if (substr($string, 6, 0) == "") { $ok++; }
78 $tests++; if (substr($string, -2, 2) == "45") { $ok++; }
79 $tests++; if (substr($string, 1, -1) == "tring1234") { $ok++; }
80 $tests++; if (substr($string, -1, -2) == "") { $ok++; }
81 $tests++; if (substr($string, -3, -2) == "3") { $ok++; }
H A D002.phpt12 printf("printf test 1:%s\n", "simple string");
51 printf test 1:simple string
H A D004.phpt4 highlight.string=#DD0000
H A Dbug22592.phpt24 string(6) "abcdef"
25 string(6) "abcdef"
26 string(6) "a*c*e*"
27 string(6) "a*c*e*"
H A Doffsets_chaining_1.phpt2 testing the behavior of string offset chaining
7 $string = "foobar";
8 var_dump($string[0][0][0][0]);
11 string(1) "f"
H A Doffsets_chaining_2.phpt2 testing the behavior of string offset chaining
7 $string = "foobar";
8 var_dump($string{0}{0}[0][0]);
11 string(1) "f"
H A Doffsets_chaining_3.phpt2 testing the behavior of string offset chaining
7 $string = "foobar";
8 var_dump(isset($string[0][0][0][0]));
H A Doffsets_chaining_4.phpt2 testing the behavior of string offset chaining
7 $string = "foobar";
8 var_dump(isset($string{0}{0}[0][0]));
H A Doffsets_chaining_5.phpt2 testing the behavior of string offset chaining
17 string(6) "foobar"
20 Warning: Illegal string offset 'foo' in %soffsets_chaining_5.php on line %d
21 string(1) "f"
24 Warning: Illegal string offset 'foo' in %soffsets_chaining_5.php on line %d
26 Warning: Illegal string offset 'bar' in %soffsets_chaining_5.php on line %d
27 string(1) "f"
H A Doffsets_general.phpt7 $string = "foobar";
8 var_dump($string[0]);
9 var_dump($string[1]);
14 var_dump($string{0});
15 var_dump($string{1});
22 string(1) "f"
23 string(1) "o"
28 string(1) "f"
30 string(1) "f"
31 string(1) "o"
[all …]
/PHP-5.5/tests/output/
H A Dob_get_clean_basic_001.phpt18 string(11) "Hello World"
H A Dob_get_clean_basic_002.phpt20 string(11) "hello world"
H A Dob_get_contents_error_001.phpt7 /* Prototype : proto string ob_get_contents(void)
H A Dob_implicit_flush_variation_001.phpt40 // heredoc string
76 'empty string DQ' => "",
77 'empty string SQ' => '',
79 // string data
80 'string DQ' => "string",
81 'string SQ' => 'string',
156 --empty string DQ--
160 --empty string SQ--
164 --string DQ--
168 --string SQ--
[all …]
H A Dob_start_basic_001.phpt6 * proto bool ob_start([ string|array user_function [, int chunk_size [, bool erase]]])
H A Dob_start_basic_002.phpt5 function return_empty_string($string) {
9 function return_false($string) {
13 function return_null($string) {
17 function return_string($string) {
21 function return_zero($string) {

Completed in 56 milliseconds

12345678910>>...263