Lines Matching refs:to
12 function rename($from, $to) {
13 print "Renaming $from to $to\n";
38 unlink('test://example.com/path/to/file');
39 rename('test://example.com/path/to/from', 'test://example.com/path/to/to');
40 /* We *want* this to fail and thus not output the watch statement */
41 @rename('test://example.com/path/to/from', 'http://example.com/path/to/to');
42 mkdir('test://example.com/path/to/directory', 0755);
43 rmdir('test://example.com/path/to/directory');
44 print_r(stat('test://example.com/path/to/file'));
45 echo "Filesize = " . filesize('test://example.com/path/to/file') . "\n";
46 echo "filemtime = " . filemtime('test://example.com/path/to/file') . "\n";
49 Unlinking file: test://example.com/path/to/file
50 Renaming test://example.com/path/to/from to test://example.com/path/to/to
51 Making directory: test://example.com/path/to/directory as 755
52 Removing directory: test://example.com/path/to/directory
53 Stating file: test://example.com/path/to/file