String.php
862 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?PHP
/**
* patTemplate Reader that reads from a string
*
* $Id: String.php,v 1.4 2004/04/23 22:01:02 schst Exp $
*
* @package patTemplate
* @subpackage Readers
* @author Stephan Schmidt <schst@php.net>
*/
/**
* patTemplate Reader that reads from a string
*
* @package patTemplate
* @subpackage Readers
* @author Stephan Schmidt <schst@php.net>
*/
class patTemplate_Reader_String extends patTemplate_Reader
{
/**
* Read templates from a string
*
* @final
* @access public
* @param string string to parse
* @param array options, not implemented in current versions, but future versions will allow passing of options
* @return array templates
*/
function readTemplates( $input )
{
$this->_currentInput = $input;
$templates = $this->parseString( $input );
return $templates;
}
}
?>