PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $var = 'Cheese,Dairy Carrots,Produce Potatoes,Produce Canned Corn,Pantry Romaine,Produce Yogurt,Dairy Flour,Pantry Iceberg,Produce Coffee,Pantry Pasta,Pantry Milk,Dairy Grapes,Produce Pasta Sauce,Pantry'; $input = trim(fgets($var)); $productList = []; while(false !== ($line = trim(fgets($var)))){ $lineInfo = explode(',', $line); if (count($lineInfo) === 2) { $product = $lineInfo[0]; $department = $lineInfo[1]; $productList[] = array('product'=>$product, 'department' => $department); } }
Show:  
Copy Clear