Home
last modified time | relevance | path

Searched refs:w (Results 51 – 75 of 1009) sorted by relevance

12345678910>>...41

/php-src/ext/standard/tests/file/
H A Dfputcsv_variation6.phpt33 "w+", "w+b", "w+t",
118 -- file opened in w+ --
125 -- file opened in w+b --
132 -- file opened in w+t --
202 -- file opened in w+ --
209 -- file opened in w+b --
216 -- file opened in w+t --
286 -- file opened in w+ --
370 -- file opened in w+ --
454 -- file opened in w+ --
[all …]
H A Dfputcsv_variation7.phpt33 "w+", "w+b", "w+t",
118 -- file opened in w+ --
125 -- file opened in w+b --
132 -- file opened in w+t --
202 -- file opened in w+ --
209 -- file opened in w+b --
216 -- file opened in w+t --
286 -- file opened in w+ --
370 -- file opened in w+ --
454 -- file opened in w+ --
[all …]
H A Dfputcsv_variation8.phpt33 "w+", "w+b", "w+t",
118 -- file opened in w+ --
125 -- file opened in w+b --
132 -- file opened in w+t --
202 -- file opened in w+ --
209 -- file opened in w+b --
216 -- file opened in w+t --
286 -- file opened in w+ --
370 -- file opened in w+ --
454 -- file opened in w+ --
[all …]
H A Dfputcsv_variation12.phpt31 "w+", "w+b", "w+t",
116 -- file opened in w+ --
123 -- file opened in w+b --
130 -- file opened in w+t --
200 -- file opened in w+ --
207 -- file opened in w+b --
214 -- file opened in w+t --
284 -- file opened in w+ --
368 -- file opened in w+ --
452 -- file opened in w+ --
[all …]
H A Dfputcsv_variation10.phpt24 "w+", "w+b", "w+t",
34 $file_handle = fopen($filename, "w");
108 -- file opened in w+ --
115 -- file opened in w+b --
122 -- file opened in w+t --
198 -- file opened in w+ --
206 -- file opened in w+b --
214 -- file opened in w+t --
288 -- file opened in w+ --
295 -- file opened in w+b --
[all …]
H A Dphp_fd_wrapper_03.phpt5 fopen("php://fd", "w");
6 fopen("php://fd/", "w");
7 fopen("php://fd/-2", "w");
8 fopen("php://fd/1/", "w");
H A Dfflush_variation2.phpt18 $file_modes = array("w", "wb", "wt", "w+", "w+b", "w+t",
68 -- link opened in w mode --
83 -- link opened in w+ mode --
88 -- link opened in w+b mode --
93 -- link opened in w+t mode --
129 -- link opened in w mode --
144 -- link opened in w+ mode --
190 -- link opened in w mode --
205 -- link opened in w+ mode --
251 -- link opened in w mode --
[all …]
H A Dpopen_pclose_error.phpt26 popen(): Argument #2 ($mode) must be one of "r", "rb", "w", or "wb"
27 popen(): Argument #2 ($mode) must be one of "r", "rb", "w", or "wb"
28 popen(): Argument #2 ($mode) must be one of "r", "rb", "w", or "wb"
/php-src/tests/classes/
H A Diterators_004.phpt12 foreach($obj as $w) {
13 echo "object:$w\n";
48 foreach($obj as $v => $w) {
49 echo "object:$v=>$w\n";
/php-src/sapi/cli/tests/
H A D007.phpt2 strip comments and whitespace with -w
35 var_dump(`$php -n -w "$filename"`);
36 var_dump(`$php -n -w "wrong"`);
37 …ump(`echo "<?php /* comment */ class test {\n // comment \n function foo() {} } ?>" | $php -n -w`);
/php-src/ext/gd/tests/
H A Dbug60160.phpt7 $w = 3;
9 $im = imagecreatetruecolor($w, $h);
13 for ($ix = 0; $ix < $w; $ix++) {
H A Dbug51263.phpt13 $w = 23;
15 $img = imagecreatetruecolor($w, $h);
17 imagefilledrectangle($img, 0, 0, $w-1, $h-1, $blk);
/php-src/ext/pcre/tests/
H A Dctype_back_to_c.phpt5 if (setlocale(LC_ALL, 'invalid') === 'invalid') { die('skip setlocale() is broken /w musl'); }
11 var_dump(preg_match('/\w/', "\xe4"));
13 var_dump(preg_match('/\w/', "\xe4"));
H A Dpreg_replace_basic.phpt12 var_dump(preg_replace('<\b[hH]\w{2,4}>', 'Bonjour', $string)); //finds h or H at the beginning of a…
13 var_dump(preg_replace('<(\w)\s*-\s*(\w)>', '\\1. \\2', $string)); //finds dashes with an indefinite…
14 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>', '\\1 at \\2 dot \\3 dot \\4', 'jo…
H A Dpreg_replace_edit_basic.phpt17 var_dump(preg_replace('<\b[hH]\w{2,4}>',
20 var_dump(preg_replace('<(\w)\s*-\s*(\w)>',
23 var_dump(preg_replace('<(^[a-z]\w+)@(\w+)\.(\w+)\.([a-z]{2,}$)>',
H A Dbug76512.phpt2 Bug #76512 (\w no longer includes unicode characters)
5 var_dump(preg_match('/\w/u', 'ä'));
/php-src/ext/zlib/tests/
H A Dgzopen_basic2.phpt12 $modes = array('w', 'w+');
35 testing mode -- w --
37 testing mode -- w+ --
/php-src/ext/standard/tests/streams/
H A Dbug60602.phpt8 1 => array('pipe', 'w'), // stdout
9 2 => array('pipe', 'w'), // strerr
21 $w = $e = NULL;
22 $n = stream_select($pipes, $w, $e, 300);
H A Dproc_open_bug64438.phpt13 $descriptors = array(array('pipe', 'r'), array('pipe', 'w'), array('pipe', 'w'));
31 $w = $writePipes;
33 $n = stream_select($r, $w, $e, 60);
41 if ($w) {
/php-src/ext/com_dotnet/tests/
H A Dbug66322.phpt16 $w = new COM('Word.Application');
17 $doc = $w->Documents->Add();
22 $w->Quit();
/php-src/ext/spl/tests/SplFileObject/
H A DSplFileObject_fputcsv_variation10.phpt25 "w+", "w+b", "w+t",
35 $fo = new SplFileObject($file, 'w');
107 -- file opened in w+ --
114 -- file opened in w+b --
121 -- file opened in w+t --
197 -- file opened in w+ --
205 -- file opened in w+b --
213 -- file opened in w+t --
287 -- file opened in w+ --
294 -- file opened in w+b --
[all …]
/php-src/ext/mbstring/tests/
H A Dmb_ereg_named_subpatterns.phpt12 mb_ereg('(?<wsp>\s*)(?<word>\w+)', ' 中国', $m);
14 mb_ereg('(?<wsp>\s*)(?<word>\w+)', '国', $m);
16 mb_ereg('(\s*)(?<word>\w+)', ' 中国', $m);
/php-src/ext/standard/tests/array/
H A Dbug24980.phpt26 function rsum($v, $w)
28 $v += $w;
31 function rmul($v, $w)
33 $v *= $w;
/php-src/ext/gd/libgd/
H A Dgd_io.h27 void Putword(int w, gdIOCtx *ctx);
32 void gdPutWord(int w, gdIOCtx *ctx);
33 void gdPutInt(int w, gdIOCtx *ctx);
/php-src/ext/standard/tests/url/
H A Dbase64_encode_basic_001.phpt249 0xD3: 0w==
253 0xD7: 1w==
257 0xDB: 2w==
261 0xDF: 3w==
265 0xE3: 4w==
269 0xE7: 5w==
273 0xEB: 6w==
277 0xEF: 7w==
281 0xF3: 8w==
285 0xF7: 9w==
[all …]

Completed in 23 milliseconds

12345678910>>...41