Class Stream

Summary

Fully Qualified Name: Zend\View\Stream

Description

Stream wrapper to convert markup of mostly-PHP templates into PHP prior to include().

Based in large part on the example at http://www.php.net/manual/en/function.stream-wrapper-register.php

As well as the example provided at:

http://mikenaberezny.com/2006/02/19/symphony-templates-ruby-erb/

written by

Mike Naberezny (@link http://mikenaberezny.com)
Paul M. Jones  (@link http://paul-m-jones.com)

Methods

Name Description Defined By
stream_eof() Stream
stream_open() Stream
stream_read() Stream
stream_seek() Stream
stream_stat() Stream
stream_tell() Stream
url_stat() Stream

Method Details

stream_eof()

Returns: void

stream_open()

Parameter Name Type Description
$path
$mode
$options
$opened_path

Returns: void

stream_read()

Parameter Name Type Description
$count

Returns: void

stream_seek()

Parameter Name Type Description
$offset
$whence

Returns: void

stream_stat()

Returns: void

stream_tell()

Returns: void

url_stat()

Returns: void

Top