PHP Class HTMLPurifier_StringHashParser, yii
DefaultKeyValue
KEY: Value
KEY2: Value2
--MULTILINE-KEY--
Multiline
value.
Which would output something similar to:
array(
'ID' => 'DefaultKeyValue',
'KEY' => 'Value',
'KEY2' => 'Value2',
'MULTILINE-KEY' => "Multiline\nvalue.\n",
)
We use this as an easy to use file-format for configuration schema
files, but the class itself is usage agnostic.
You can use ---- to forcibly terminate parsing of a single string-hash;
this marker is used in multi string-hashes to delimit boundaries.
Show file
Open project: yiisoft/yii
Class Usage Examples
Public Properties
Public Methods
Protected Methods
Method |
Description |
|
parseHandle ( resource $fh ) : array |
Internal parser that acepts a file handle. |
|
Method Details
parseFile()
public method
Parses a file that contains a single string-hash.
parseHandle()
protected method
Internal parser that acepts a file handle.
protected parseHandle ( resource $fh ) : array |
$fh |
resource |
File handle with pointer at start of valid string-hash
block. |
return |
array |
|
parseMultiFile()
public method
Parses a file that contains multiple string-hashes delimited by '----'
Property Details