芝麻web文件管理V1.00
编辑当前文件:/home/strato/chroot/opt/RZphp80/includes/doc/System_Mount/docs/example.php
| // +----------------------------------------------------------------------+ // // $Id: example.php 304153 2010-10-06 12:14:29Z clockwerx $ require_once 'System/Mount.php'; // Create the mount class $m = &new System_Mount(); // Get an object representing the CD-ROM entry $cdrom = &$m->getEntryForPath('/cdrom'); if (PEAR::isError($cdrom)) { die($cdrom->message."\n"); } // Mount it $res = $cdrom->mount(); if (PEAR::isError($res)) { die($res->getMessage()."\n"); } // List it's contents print `ls {$cdrom->mountPoint}`; // Unmount it $cdrom->unmount(); if (PEAR::isError($res)) { die($res->getMessage()."\n"); } ?>