3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data = <<<EOT 86010800,class,Table Games,,"(10005183, 10005184, 10005185)" 86011100,class,Toy Vehicles – Non-ride,,"(10005192, 10005190, 10005191, 10005193, 10005194, 10005195, 10005196)" 86011000,class,Toys – Ride-on,,"(10005187, 10005188, 10005441, 10005189)" 86010900,class,Toys/Games Variety Packs,,(10005186) 10001686,brick,Airbrushes (Powered),"Definition: Includes any products that can be described/observed as a powered machine that scatters paint using air pressure and which is used for design illustrations, fine art and delicate fine spray applications. The machine comprises of a compression or propulsion device to scatter the paint.Specifically excludes Spray Paint and Aerosols.Excludes Airbrushing Replacement Parts and Accessories such as Airbrush Control Valves and Airbrush Hoses.",() 10001688,brick,Airbrushing Equipment – Replacement Parts/Accessories,Definition: Includes any products that can be described/observed as a replacement part/accessory for airbrushing equipment.Includes products such as Airbrush Control Valves and Airbrush Hoses.Excludes products such as complete Airbrushes.,(20001349) 10001690,brick,Airbrushing Supplies Other,"Definition: Includes any products that may be described/observed as Airbrushing Supplies products, where the user of the schema is not able to classify the products in existing bricks within the schema.Excludes all currently classified Airbrushing Supplies.",() EOT; $file = fopen('php://temp', 'r+'); fwrite($file, $data); rewind($file); while(!feof($file)) { $line = fgetcsv($file); var_dump($line); }

preferences:
63.53 ms | 402 KiB | 5 Q