PiPHP\GPIO\FileSystem\FileSystem::open PHP Method

open() public method

public open ( $path, $mode )
    public function open($path, $mode)
    {
        $stream = @fopen($path, $mode);
        $this->exceptionIfFalse($stream);
        return $stream;
    }