/PHP-8.0/ext/dom/tests/ |
H A D | dom_test.inc | 51 function print_node_compact($node, $spaces) 54 print str_repeat(" ", $spaces) . trim($node->nodeValue) . "\n"; 56 print str_repeat(" ", $spaces) . "<" . $node->nodeName . ">\n"; 57 print_node_list_compact($node->childNodes, $spaces + 2); 58 print str_repeat(" ", $spaces) . "</" . $node->nodeName . ">\n"; 62 function print_node_list_compact($nodelist, $spaces = 0) 65 print_node_compact($node, $spaces);
|
/PHP-8.0/ext/standard/tests/file/ |
H A D | basename_variation1.phpt | 40 "dir with spaces/foo.bar", 41 "dir with spaces\\foo.bar", 73 basename for path A:/dir with spaces/foo.bar is: 76 string(23) "dir with spaces\foo.bar" 96 string(23) "dir with spaces\foo.bar" 116 string(26) "A:\dir with spaces\foo.bar" 136 string(23) "dir with spaces\foo.bar" 156 string(23) "dir with spaces\foo.bar" 176 string(29) "blah:\dir with spaces\foo.bar" 216 string(23) "dir with spaces\foo.bar" [all …]
|
H A D | basename_variation2.phpt | 22 "dir with spaces/foo.bar", 23 "dir with spaces\\foo.bar", 233 string(19) "dir with spaces\foo" 235 string(23) "dir with spaces\foo.bar" 237 string(23) "dir with spaces\foo.bar" 239 string(23) "dir with spaces\foo.bar" 241 string(23) "dir with spaces\foo.bar" 243 string(16) "dir with spaces\" 245 string(23) "dir with spaces\foo.bar" 247 string(23) "dir with spaces\foo.bar" [all …]
|
H A D | basename_variation1-win32.phpt | 40 "dir with spaces/foo.bar", 41 "dir with spaces\\foo.bar", 73 basename for path A:/dir with spaces/foo.bar is: 75 basename for path A:/dir with spaces\foo.bar is: 93 basename for path Z:/dir with spaces/foo.bar is: 95 basename for path Z:/dir with spaces\foo.bar is: 113 basename for path A:\dir with spaces/foo.bar is: 115 basename for path A:\dir with spaces\foo.bar is: 213 basename for path ~/dir with spaces/foo.bar is: 215 basename for path ~/dir with spaces\foo.bar is: [all …]
|
H A D | basename_variation2-win32.phpt | 22 "dir with spaces/foo.bar", 23 "dir with spaces\\foo.bar", 214 basename for path dir with spaces/foo.bar, supplying suffix .b is: 216 basename for path dir with spaces/foo.bar, supplying suffix . is: 218 basename for path dir with spaces/foo.bar, supplying suffix is: 228 basename for path dir with spaces/foo.bar, supplying suffix / is: 230 basename for path dir with spaces/foo.bar, supplying suffix \ is: 236 basename for path dir with spaces\foo.bar, supplying suffix . is: 238 basename for path dir with spaces\foo.bar, supplying suffix is: 248 basename for path dir with spaces\foo.bar, supplying suffix / is: [all …]
|
H A D | bug53848.phpt | 2 Bug #53848 (fgetcsv removes leading spaces from fields)
|
/PHP-8.0/scripts/dev/ |
H A D | tidy.php | 95 $spaces = strlen($matches[0]); 96 $tabs = intdiv($spaces, $tabSize); 97 $spaces -= $tabs * $tabSize; 98 return str_repeat("\t", $tabs) . str_repeat(" ", $spaces);
|
/PHP-8.0/Zend/tests/ |
H A D | flexible-heredoc-error2.phpt | 2 Flexible heredoc syntax 2: mixing spaces and tabs in body 14 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-nowdoc-error2.phpt | 2 Flexible nowdoc syntax 2: mixing spaces and tabs in body 14 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-heredoc-error1.phpt | 2 Flexible heredoc syntax 1: different indentation for body (spaces) ending marker (tabs) 14 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-nowdoc-error1.phpt | 2 Flexible nowdoc syntax 1: different indentation for body (spaces) ending marker (tabs) 14 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-nowdoc-error3.phpt | 2 Flexible nowdoc syntax error 3: mixing spaces and tabs in ending marker 14 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-nowdoc-error5.phpt | 2 Flexible nowdoc syntax error 5: mixing spaces and tabs in ending marker for 0 length body 11 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-heredoc-error3.phpt | 2 Flexible heredoc syntax error 3: mixing spaces and tabs in ending marker 14 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-heredoc-error5.phpt | 2 Flexible heredoc syntax error 5: mixing spaces and tabs in ending marker for 0 length body 11 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line %d
|
H A D | flexible-heredoc-error12.phpt | 13 Parse error: Invalid indentation - tabs and spaces cannot be mixed in %s on line 5
|
/PHP-8.0/ext/tidy/tests/ |
H A D | 030.phpt | 15 'indent-spaces' => 3); // Integer 21 var_dump($c['indent-spaces']);
|
/PHP-8.0/ext/standard/tests/http/ |
H A D | bug47021.phpt | 36 $spaces = str_repeat(' ', $num_spaces); 40 . "Content-Type:{$spaces}text/plain{$trailing}\r\n" 41 . "Transfer-Encoding:{$spaces}Chunked{$trailing}\r\n\r\n" 45 . "Content-Length:{$spaces}5{$trailing}\r\n\r\n"
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | sprintf_variation53.phpt | 5 echo "*** Testing sprintf() : with white spaces in format strings ***\n"; 31 *** Testing sprintf() : with white spaces in format strings ***
|
H A D | vprintf_variation19.phpt | 9 echo "*** Testing vprintf() : with white spaces in format strings ***\n"; 53 *** Testing vprintf() : with white spaces in format strings ***
|
H A D | vprintf_variation19_64bit.phpt | 9 echo "*** Testing vprintf() : with white spaces in format strings ***\n"; 53 *** Testing vprintf() : with white spaces in format strings ***
|
H A D | wordwrap_variation5.phpt | 2 Test wordwrap() function : usage variations - valid break arguments(spaces) 6 *test wordwrap() with break arguments as single spaces
|
/PHP-8.0/tests/basic/ |
H A D | bug78929.phpt | 2 Bug #78929 (plus signs in cookie values are converted to spaces)
|
/PHP-8.0/ext/filter/tests/ |
H A D | 044.phpt | 2 Integer validation with spaces
|
/PHP-8.0/ext/standard/tests/streams/ |
H A D | bug65483.phpt | 2 Bug #65483: quoted-printable encode stream filter incorrectly encoding spaces
|