コード例 #1
0
 echo "Child files: <br/>\n";
 foreach ($childfiles as $childfile) {
     echo $childfile . " <br/>\n";
     /*
     $childfile->open("r");
     echo "desc=".$childfile->getL1desc()."<br/>\n";
     echo "<pre>".$childfile->read($childfile->stats->size)."</pre><br/>\n";
     $cur_offset=$childfile->seek(3);
     echo "offsetted '$cur_offset' bytes <br/> \n";
     echo "<pre>".$childfile->read($childfile->stats->size)."</pre><br/>\n";
     */
     //$childfile->close();
 }
 $myfile = new ProdsFile($account, "/tempZone/home/rods/test1");
 $myfile->open("w+", "demoResc");
 $bytes = $myfile->write("Hello world from Sifang!\n");
 echo "{$bytes} bytes written <br/>\n";
 $myfile->close();
 $myfile->open("r", "demoResc", true);
 $str = $myfile->read(200);
 echo "the file reads: <pre>{$str}</pre>";
 $myfile->close();
 $file_src = new ProdsFile($account, "/tempZone/home/rods/test.php");
 $file_dest = new ProdsFile($account, "/tempZone/home/rods/test.sifang.txt");
 //$file_src->cpMeta($file_dest);
 foreach ($file_dest->getMeta() as $meta) {
     echo "{$file_dest->path_str}: {$meta->name}; {$meta->value}; {$meta->units} <br/> \n";
 }
 $meta = array(new RODSMeta("test1", "1"));
 $files = ProdsPath::queryMeta($account, $meta);
 foreach ($files as $file) {
コード例 #2
0
ファイル: fileio.php プロジェクト: hussamnasir/irods-php
<?php

require_once "/Path/to/Prods/src/Prods.inc.php";
// make an iRODS account object for connection, assuming:
// username: demouser, password: demopass, server: srbbrick15.sdsc.edu, port: 1247
$account = new RODSAccount("srbbrick15.sdsc.edu", 1247, "demouser", "demopass");
//create an file object for read, assuming the path is "/tempZone/home/demouser/test_read.txt"
$myfile = new ProdsFile($account, "/tempZone/home/demouser/test_read.txt");
//read and print out the file
$myfile->open("r");
echo "the file reads: <pre>";
while ($str = $myfile->read(4096)) {
    echo $str;
}
echo "</pre>";
//close the file pointer
$myfile->close();
//create an file object for write, assuming the path is "/tempZone/home/demouser/test_write.txt"
$myfile = new ProdsFile($account, "/tempZone/home/demouser/test_write.txt");
//write hello world to the file, onto "demoResc" as resource. Note that resource name is
//required here by method open(), because iRODS needs to know which resource to write to.
$myfile->open("w+", "demoResc");
$bytes = $myfile->write("Hello world!\n");
//print the number of bytes writen
echo "{$bytes} bytes written <br/>\n";
$myfile->close();
コード例 #3
0
ファイル: upload.php プロジェクト: hussamnasir/irods-php
                $response = array('success' => false, 'errmsg' => 'Unknow errors', 'errcode' => $srcfile['error']);
            }
            $error = true;
            break;
        }
        $tempuploadfilepath = tempnam(dirname($srcfile['tmp_name']), 'RODS_Web_Upload');
        move_uploaded_file($srcfile['tmp_name'], $tempuploadfilepath);
        //copy($srcfile['tmp_name'], $srcfile['name']);
        $destfile = new ProdsFile($collection->account, $collection->path_str . "/" . $filename);
        /*
        $response=array('success'=> false,'log'=> ''.$collection->account); 
        echo json_encode($response);
        exit(0); 
        */
        $destfile->open('w', $resource);
        $destfile->write(file_get_contents($tempuploadfilepath));
        $destfile->close();
        if (AUTO_EXTRACT_EXIF === true) {
            extactExif($tempuploadfilepath, $destfile);
        }
        $numfiles++;
        unlink($tempuploadfilepath);
    }
    if ($error === false) {
        $response = array('success' => true, 'msg' => "Uploaded file successfully.");
    }
    echo json_encode($response);
} catch (Exception $e) {
    $response = array('success' => false, 'errmsg' => $e->getMessage(), 'errcode' => $e->getCode());
    echo json_encode($response);
}