get() 공개 메소드

Returns file contents.
public get ( string $path ) : string
$path string File path
리턴 string
예제 #1
0
파일: ClientTest.php 프로젝트: honzap/php
 /**
  * Tests file contents retrieving if there was a directory name given.
  *
  * @depends testMkdir
  */
 public function testGetIfDir()
 {
     $this->setExpectedException('\\Jyxo\\Webdav\\FileNotExistException');
     $this->client->get($this->dir);
 }