System_WinDrives::getDriveName() -- ユーザが定義したドライブ名を返す
説明
そのドライブに対してユーザが設定した名前を返します。
この関数は PHP5 では動作せず、空の文字列
'' を返します。
パラメータ
- string
$strDrive
名前を取得したいドライブのパス。
返り値
string - ドライブのラベルを返します。
例
例 63-1myFunction() の使用法 <?php
require_once 'System/WinDrives.php';
$swd = new System_WinDrives();
echo $swd->getDriveName('C:\\');
?> |
出力:
|