/PHP-7.4/ext/standard/tests/file/ |
H A D | mkdir_rmdir_variation-win32-mb.phpt | 12 Description: Makes directory 58 -- Changing mode of directory to 0 -- 61 -- Changing mode of directory to 1 -- 64 -- Changing mode of directory to 2 -- 67 -- Changing mode of directory to 3 -- 70 -- Changing mode of directory to 4 -- 73 -- Changing mode of directory to 5 -- 76 -- Changing mode of directory to 6 -- 79 -- Changing mode of directory to 7 -- 82 -- Changing mode of directory to 8 -- [all …]
|
H A D | mkdir_rmdir_variation-win32.phpt | 12 Description: Makes directory 58 -- Changing mode of directory to 0 -- 61 -- Changing mode of directory to 1 -- 64 -- Changing mode of directory to 2 -- 67 -- Changing mode of directory to 3 -- 70 -- Changing mode of directory to 4 -- 73 -- Changing mode of directory to 5 -- 76 -- Changing mode of directory to 6 -- 79 -- Changing mode of directory to 7 -- 82 -- Changing mode of directory to 8 -- [all …]
|
H A D | mkdir_rmdir_variation1.phpt | 13 Description: Makes directory 34 -- Changing mode of directory to 0 -- 37 -- Changing mode of directory to 1 -- 40 -- Changing mode of directory to 2 -- 43 -- Changing mode of directory to 3 -- 46 -- Changing mode of directory to 4 -- 49 -- Changing mode of directory to 5 -- 52 -- Changing mode of directory to 6 -- 55 -- Changing mode of directory to 7 -- 58 -- Changing mode of directory to 8 -- [all …]
|
H A D | tempnam_variation4-1.phpt | 55 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 58 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 61 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 64 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 67 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 70 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 73 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 76 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 79 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… 82 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-1.php o… [all …]
|
H A D | tempnam_variation4-0.phpt | 55 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 58 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 61 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 64 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 67 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 70 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 73 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 76 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 79 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… 82 Notice: tempnam(): file created in the system's temporary directory in %stempnam_variation4-0.php o… [all …]
|
H A D | rename_variation5.phpt | 32 echo "\n-- Renaming directory to same directory name --\n"; 35 echo "\n-- Renaming existing link to existing directory name --\n"; 68 -- Renaming directory to same directory name -- 71 -- Renaming existing link to existing directory name -- 73 Warning: rename(%s,%s): Is a directory in %s on line %d 79 -- Renaming existing file to existing directory name -- 81 Warning: rename(%s,%s): Is a directory in %s on line %d 87 -- Renaming existing directory to existing file name -- 89 Warning: rename(%s,%s): Not a directory in %s on line %d 92 -- Renaming existing directory to existing link name -- [all …]
|
H A D | userwrapper.phpt | 14 function mkdir($directory, $mode, $options) { 15 …printf("Making directory: %s as %o%s\n", $directory, $mode, $options & STREAM_MKDIR_RECURSIVE ? " … 18 function rmdir($directory, $options) { 19 print "Removing directory: $directory\n"; 40 mkdir('test://example.com/path/to/directory', 0755); 41 rmdir('test://example.com/path/to/directory'); 49 Making directory: test://example.com/path/to/directory as 755 50 Removing directory: test://example.com/path/to/directory
|
/PHP-7.4/ext/session/ |
H A D | mod_files.sh | 20 directory="$1" 34 while [[ -d $directory ]] && [[ $( ls $directory ) ]]; do 35 echo "Directory $directory is not empty! What would you like to do?" 42 echo "Deleting $directory contents... " 43 rm -rf $directory/* 46 read directory 55 if [[ ! -d $directory ]]; then 56 mkdir -p $directory 60 echo "Creating session path in $directory with a depth of $depth for session.sid_bits_per_character… 63 newpath="$directory/$i"
|
/PHP-7.4/tests/security/ |
H A D | open_basedir.inc | 5 // SAPIs set the working directory differently. So simply creating a directory 23 $directory = substr($directory, 0, -1); 36 $handle = opendir($directory); 54 @chmod($directory, 0777); 55 rmdir($directory); 62 $directory = getcwd(); 84 $directory = $savedDirectory; 92 $directory = getcwd(); 93 $savedDirectory = $directory; 94 var_dump(chdir($directory)); [all …]
|
/PHP-7.4/ext/standard/tests/dir/ |
H A D | closedir_variation2-win32-mb.phpt | 2 Test closedir() function : usage variations - close directory handle twice 23 //create temporary directory for test, removed in CLEAN section 24 $directory = __DIR__ . "/私はガラスを食べられますclosedir_variation2"; 25 mkdir($directory); 27 $dh = opendir($directory); 29 echo "\n-- Close directory handle first time: --\n"; 34 echo "\n-- Close directory handle second time: --\n"; 42 $directory = __DIR__ . "/私はガラスを食べられますclosedir_variation2"; 43 rmdir($directory); 48 -- Close directory handle first time: -- [all …]
|
H A D | closedir_variation2.phpt | 2 Test closedir() function : usage variations - close directory handle twice 17 //create temporary directory for test, removed in CLEAN section 18 $directory = __DIR__ . "/closedir_variation2"; 19 mkdir($directory); 21 $dh = opendir($directory); 23 echo "\n-- Close directory handle first time: --\n"; 28 echo "\n-- Close directory handle second time: --\n"; 36 $directory = __DIR__ . "/closedir_variation2"; 37 rmdir($directory); 42 -- Close directory handle first time: -- [all …]
|
H A D | chdir_variation2.phpt | 5 /* Prototype : bool chdir(string $directory) 6 * Description: Change the current directory 38 echo "\n-- \$directory = '..': --\n"; 47 echo "\n-- \$directory = '../': --\n"; 51 echo "\n-- \$directory = './': --\n"; 72 -- $directory = './level2_one': -- 82 -- $directory = '..': -- 86 -- $directory = 'level2_two', '.': -- 91 -- $directory = '../': -- 95 -- $directory = './': -- [all …]
|
H A D | dir_variation6.phpt | 2 Test dir() function : usage variations - non-existent directory 12 * Prototype : object dir(string $directory[, resource $context]) 23 // create the temporary directory 28 // open existent directory 32 // remove directory and try to open the same(non-existent) directory again 36 echo "-- opening previously removed directory --\n"; 39 // point to a non-existent directory 41 echo "-- opening non-existent directory --\n"; 48 *** Testing dir() : open a non-existent directory *** 49 -- opening previously removed directory -- [all …]
|
H A D | chdir_variation2-win32-mb.phpt | 11 /* Prototype : bool chdir(string $directory) 12 * Description: Change the current directory 45 echo "\n-- \$directory = '..': --\n"; 54 echo "\n-- \$directory = '../': --\n"; 58 echo "\n-- \$directory = './': --\n"; 80 -- $directory = './私はガラスを食べられますlevel_one': -- 90 -- $directory = '..': -- 94 -- $directory = '私はガラスを食べられますlevel_two', '.': -- 99 -- $directory = '../': -- 103 -- $directory = './': -- [all …]
|
H A D | chdir_error2.phpt | 2 Test chdir() function : error conditions - Non-existent directory 5 /* Prototype : bool chdir(string $directory) 6 * Description: Change the current directory 11 * Pass a directory that does not exist as $directory to chdir() to test behaviour 16 $directory = __FILE__ . '/idonotexist'; 18 var_dump(chdir($directory));
|
H A D | getcwd_basic.phpt | 6 * Description: Gets the current directory 16 //create temporary directory for test, removed in CLEAN section 17 $directory = __DIR__ . "/getcwd_basic"; 18 mkdir($directory); 21 chdir($directory); 27 $directory = __DIR__ . "/getcwd_basic"; 28 rmdir($directory);
|
H A D | dir_variation4.phpt | 6 * Prototype : object dir(string $directory[, resource $context]) 13 * directory which is already open. 21 // create the temporary directory 26 // create files within the temporary directory 29 // open the directory 33 // open the same directory again without closing it 37 echo "-- reading directory contents with previous handle --\n"; 40 echo "-- reading directory contents with current handle --\n"; 55 *** Testing dir() : operate on previously opened directory *** 68 -- reading directory contents with previous handle -- [all …]
|
H A D | chdir_error2-win32-mb.phpt | 2 Test chdir() function : error conditions - Non-existent directory 11 /* Prototype : bool chdir(string $directory) 12 * Description: Change the current directory 17 * Pass a directory that does not exist as $directory to chdir() to test behaviour 22 $directory = __FILE__ . '/私はガラスを食べられますidonotexist'; 24 var_dump(chdir($directory));
|
H A D | dir_variation4-win32-mb.phpt | 12 * Prototype : object dir(string $directory[, resource $context]) 19 * directory which is already open. 27 // create the temporary directory 32 // create files within the temporary directory 35 // open the directory 39 // open the same directory again without closing it 43 echo "-- reading directory contents with previous handle --\n"; 46 echo "-- reading directory contents with current handle --\n"; 61 *** Testing dir() : operate on previously opened directory *** 74 -- reading directory contents with previous handle -- [all …]
|
H A D | scandir_basic.phpt | 19 // set up directory 20 $directory = __DIR__ . '/scandir_basic'; 21 mkdir($directory); 22 create_files($directory, 3); 25 var_dump(scandir($directory)); 30 var_dump(scandir($directory, $sorting_order, $context)); 32 delete_files($directory, 3); 37 $directory = __DIR__ . '/scandir_basic'; 38 rmdir($directory);
|
H A D | getcwd_basic-win32-mb.phpt | 12 * Description: Gets the current directory 22 //create temporary directory for test, removed in CLEAN section 23 $directory = __DIR__ . "/私はガラスを食べられますgetcwd_basic"; 24 mkdir($directory); 27 chdir($directory); 33 $directory = __DIR__ . "/私はガラスを食べられますgetcwd_basic"; 34 rmdir($directory);
|
H A D | scandir_basic-win32-mb.phpt | 25 // set up directory 26 $directory = __DIR__ . '/私はガラスを食べられますscandir_basic'; 27 mkdir($directory); 28 create_files($directory, 3, "numeric", 0755, 1, "w", "私はガラスを食べられますfile"); 31 var_dump(scandir($directory)); 36 var_dump(scandir($directory, $sorting_order, $context)); 38 delete_files($directory, 3, "私はガラスを食べられますfile"); 43 $directory = __DIR__ . '/私はガラスを食べられますscandir_basic'; 44 rmdir($directory);
|
/PHP-7.4/ext/standard/tests/file/windows_links/ |
H A D | readlink_compat.phpt | 35 // junction to a directory 37 $target = $tmpDir . '\\test\\directory'; 44 $target = $tmpDir . '\\test\\directory'; 74 rmdir($tmpDir . '\\test\\directory'); 81 string(%d) "%s\mnt\test\directory" 82 string(%d) "%s\mnt\test\directory" 83 string(%d) "%s\mnt\test\directory" 84 string(%d) "%s\mnt\test\directory\a.php" 85 string(%d) "%s\mnt\test\directory\a.php" 88 string(%d) "%s\mnt\test\directory" [all …]
|
/PHP-7.4/ext/phar/tests/ |
H A D | dir.phpt | 37 file_put_contents('phar://' . __DIR__ . '/ok.phar/sub/directory.txt', 'hi'); 39 mkdir('phar://' . __DIR__ . '/ok.phar/sub/directory.txt'); 69 Warning: mkdir(): phar error: cannot create directory "phar://%sdir.phar.php/fails", write operatio… 71 Warning: mkdir(): phar error: cannot create directory "fails" in phar "%sok.phar", directory alread… 73 Warning: mkdir(): phar error: cannot create directory "sub" in phar "%sok.phar", directory already … 75 …r: cannot create directory "sub/directory.txt" in phar "%sok.phar", phar error: path "sub/director… 79 Warning: mkdir(): phar error: cannot create directory "phar://", no phar archive specified in %sdir… 83 Warning: rmdir(): phar error: cannot remove directory "hi" in phar "%sunknown.phar", directory does… 85 Warning: rmdir(): phar error: cannot rmdir directory "phar://%sdir.phar.php/another/dir", write ope… 87 Warning: rmdir(): phar error: cannot remove directory "" in phar "%sdir.phar.php", directory does n… [all …]
|
/PHP-7.4/ext/sqlite3/tests/ |
H A D | sqlite3_21_security.phpt | 11 $directory = __DIR__ . '/'; 14 echo "Within test directory\n"; 15 $db = new SQLite3($directory . $file); 18 unlink($directory . $file); 20 echo "Above test directory\n"; 30 Within test directory 34 Above test directory
|