Files
2014-08-20 12:03:59 +08:00

11 lines
192 B
PHP

<?php
try {
$obj = new phdfs("127.0.0.1","9000");
$obj->connect();
$log = $obj->write('/test.txt','hello world');
} catch (Exception $ex) {
var_dump($ex->getMessage());
}
?>