Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17143 программиста и 1833 робота. Сейчас ищут 1712 программистов ...
System_WinDrives::getDriveList()
Вернуться к: System_WinDrives
System_WinDrives::getDriveList()
System_WinDrives::getDriveList() – Gets array with path of all drives
Synopsis
require_once 'System/WinDrives.php';
array System_WinDrives::getDriveList ( void )
Returns an array with all drive paths (e.g. A:\, C:\).
If no API is available, the drive list is guessed. To get more data (like drive type and name), you should use getDrivesInformation().
Return value
array - array with all the drives
Example
Using myFunction()
<?php
require_once 'System/WinDrives.php';
$swd = new System_WinDrives();
$arPaths = $swd->getDriveList();
foreach ($arPaths as $strPath) {
echo $strPath . "\r\n";//echoes things like "A:\" and "C:\"
}
?>
Output:
A:\
C:\
Вернуться к: System_WinDrives