3v4l.org

run code in 500+ PHP versions simultaneously
<?php $csv = '"Stock Number","product","title","size","description","price" "195642","T-Shirt","100% cotton classic fit","XL","Cotton shirts breathe better than clothing made with synthetic materials, and are less prone to retaining odors and losing shape.We offer a wide variety of cotton t-shirts from leading brands such as Fruit of the Loom, Hanes, New Balance, and more.","6.99"'; $array= str_getcsv($csv); print_r($array);
Output for 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
Deprecated: str_getcsv(): the $escape parameter must be provided as its default value will change in /in/JE8fK on line 4 Array ( [0] => Stock Number [1] => product [2] => title [3] => size [4] => description [5] => price "195642" [6] => T-Shirt [7] => 100% cotton classic fit [8] => XL [9] => Cotton shirts breathe better than clothing made with synthetic materials, and are less prone to retaining odors and losing shape.We offer a wide variety of cotton t-shirts from leading brands such as Fruit of the Loom, Hanes, New Balance, and more. [10] => 6.99 )
Output for 7.1.25 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30
Array ( [0] => Stock Number [1] => product [2] => title [3] => size [4] => description [5] => price "195642" [6] => T-Shirt [7] => 100% cotton classic fit [8] => XL [9] => Cotton shirts breathe better than clothing made with synthetic materials, and are less prone to retaining odors and losing shape.We offer a wide variety of cotton t-shirts from leading brands such as Fruit of the Loom, Hanes, New Balance, and more. [10] => 6.99 )

preferences:
112.86 ms | 1589 KiB | 4 Q