[ Index ]

PHP Cross Reference of vtigercrm-6.1.0

title

Body

[close]

/libraries/htmlpurifier/library/HTMLPurifier/ -> StringHashParser.php (summary)

(no description)

File Size: 110 lines (3 kb)
Included or required: 1 time
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

HTMLPurifier_StringHashParser:: (3 methods):
  parseFile()
  parseMultiFile()
  parseHandle()


Class: HTMLPurifier_StringHashParser  - X-Ref

Parses string hash files. File format is as such:

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.
parseFile($file)   X-Ref
Parses a file that contains a single string-hash.


parseMultiFile($file)   X-Ref
Parses a file that contains multiple string-hashes delimited by '----'


parseHandle($fh)   X-Ref
Internal parser that acepts a file handle.

param: $fh File handle with pointer at start of valid string-hash



Generated: Fri Nov 28 20:08:37 2014 Cross-referenced by PHPXref 0.7.1