diff options
Diffstat (limited to 'REFLECTION')
-rw-r--r-- | REFLECTION | 98 |
1 files changed, 98 insertions, 0 deletions
diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..ce9e7e4 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,98 @@ +Extension [ <persistent> extension #74 csv version 0.4.4 ] { + + - Functions { + Function [ <internal:csv> function Csv\array_to_row ] { + + - Parameters [4] { + Parameter #0 [ <required> array $fields ] + Parameter #1 [ <optional> string $delimiter = ',' ] + Parameter #2 [ <optional> string $enclosure = '"' ] + Parameter #3 [ <optional> string $eolSequence = "\r\n" ] + } + - Return [ string ] + } + Function [ <internal:csv> function Csv\row_to_array ] { + + - Parameters [4] { + Parameter #0 [ <required> string $row ] + Parameter #1 [ <optional> string $delimiter = ',' ] + Parameter #2 [ <optional> string $enclosure = '"' ] + Parameter #3 [ <optional> string $eolSequence = "\r\n" ] + } + - Return [ array ] + } + Function [ <internal:csv> function Csv\collection_to_buffer ] { + + - Parameters [4] { + Parameter #0 [ <required> Traversable|array $collection ] + Parameter #1 [ <optional> string $delimiter = ',' ] + Parameter #2 [ <optional> string $enclosure = '"' ] + Parameter #3 [ <optional> string $eolSequence = "\r\n" ] + } + - Return [ string ] + } + Function [ <internal:csv> function Csv\buffer_to_collection ] { + + - Parameters [4] { + Parameter #0 [ <required> string $buffer ] + Parameter #1 [ <optional> string $delimiter = ',' ] + Parameter #2 [ <optional> string $enclosure = '"' ] + Parameter #3 [ <optional> string $eolSequence = "\r\n" ] + } + - Return [ array ] + } + Function [ <internal:csv> function Csv\buffer_to_collection_lax ] { + + - Parameters [4] { + Parameter #0 [ <required> string $buffer ] + Parameter #1 [ <optional> string $delimiter = ',' ] + Parameter #2 [ <optional> string $enclosure = '"' ] + Parameter #3 [ <optional> string $eolSequence = "\r\n" ] + } + - Return [ array ] + } + } + + - Classes [1] { + Class [ <internal:csv> <iterateable> final class Csv\LazyLaxCollection implements IteratorAggregate, Traversable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [1] { + Method [ <internal:csv> static public method createFromBuffer ] { + + - Parameters [4] { + Parameter #0 [ <required> string $buffer ] + Parameter #1 [ <optional> string $delimiter = ',' ] + Parameter #2 [ <optional> string $enclosure = '"' ] + Parameter #3 [ <optional> string $eolSequence = "\r\n" ] + } + - Return [ Csv\LazyLaxCollection ] + } + } + + - Properties [0] { + } + + - Methods [2] { + Method [ <internal:csv, ctor> private method __construct ] { + + - Parameters [0] { + } + } + + Method [ <internal:csv, prototype IteratorAggregate> public method getIterator ] { + + - Parameters [0] { + } + - Return [ InternalIterator ] + } + } + } + } +} + |