org\bovigo\vfs\vfsStreamWrapper::stream_set_option PHP 메소드

stream_set_option() 공개 메소드

sets options on the stream
또한 보기: https://github.com/mikey179/vfsStream/issues/15
또한 보기: http://www.php.net/manual/streamwrapper.stream-set-option.php
부터: 0.10.0
public stream_set_option ( integer $option, integer $arg1, integer $arg2 ) : boolean
$option integer key of option to set
$arg1 integer
$arg2 integer
리턴 boolean
    public function stream_set_option($option, $arg1, $arg2)
    {
        switch ($option) {
            case STREAM_OPTION_BLOCKING:
                // break omitted
            // break omitted
            case STREAM_OPTION_READ_TIMEOUT:
                // break omitted
            // break omitted
            case STREAM_OPTION_WRITE_BUFFER:
                // break omitted
            // break omitted
            default:
                // nothing to do here
        }
        return false;
    }