str_getcsv

(PHP 5 >= 5.3.0, PHP 7)
Parse a CSV string into an array
array str_getcsv ( string $input [, string $delimiter = "," [, string $enclosure = '"' [, string $escape = "\\" ]]] )

Parses a string input for fields in CSV format and returns an array containing the fields read.

Parameters:
input

The string to parse.

delimiter

Set the field delimiter (one character only).

enclosure

Set the field enclosure character (one character only).

escape

Set the escape character (one character only). Defaults as a backslash (\)

Returns:

Returns an indexed array containing the fields read.

See also:

fgetcsv() -

doc_php
2016-02-24 16:12:33
Comments
Leave a Comment

Please login to continue.