目录

PHP str_getcsv() 函数

❮ PHP 字符串参考


定义和用法

str_getcsv() 函数解析 CSV 格式字段的字符串,并返回包含读取字段的数组。


语法

str_getcsv( string,separator,enclosure,escape)

参数值

Parameter Description
string Required. Specifies the string to parse
separator Optional. A character that specifies the field separator. Default is comma ( , )
enclosure Optional. A character that specifies the field enclosure character. Default is "
escape Optional. A character that specifies the escape character. Default is backslash (\)

技术细节

返回值: 返回数组中的 CSV 字段
PHP 版本: 5.3.0+

❮ PHP 字符串参考