diff options
author | Remi Collet <remi@remirepo.net> | 2025-09-04 10:38:08 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2025-09-04 10:38:08 +0200 |
commit | cd0ef91b325e8a8915a88fbde3aed33ba966b642 (patch) | |
tree | 4af70d1ee0586ee5f1a079a792cab09f5990bc66 /REFLECTION |
obsoletes php-pecl-csv
open https://gitlab.com/Girgias/csv-php-extension/-/issues/13
Version 0.4.4 reports as 0.5.0
open https://gitlab.com/Girgias/csv-php-extension/-/issues/12
Deprecation message with 8.5.0beta2
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 ] + } + } + } + } +} + |