Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17204 программиста и 1834 робота. Сейчас ищут 1638 программистов ...
System_WinDrives::getDriveName()
Вернуться к: System_WinDrives
System_WinDrives::getDriveName()
System_WinDrives::getDriveName() – Returns the user-defined name for a drive
Synopsis
require_once 'System/WinDrives.php';
string System_WinDrives::getDriveName ( string $strDrive )
Returns the user-given name for the given drive. The function does not work on PHP5 and returns an empty string ''.
Parameter
- string $strDrive
-
The drive path, whose name shall be read.
Return value
string - The drive label
Example
Using myFunction()
<?php
require_once 'System/WinDrives.php';
$swd = new System_WinDrives();
echo $swd->getDriveName('C:\\');
?>
Output:
Windrive
Вернуться к: System_WinDrives