?? string.php
字號:
<?PHP
/**
* patTemplate Reader that reads from a string
*
* $Id: String.php 47 2005-09-15 02:55:27Z rhuk $
*
* @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;
}
}
?>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -