PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $input = trim(fgets(STDIN)); $productList = []; while(false !== ($line = trim(fgets(STDIN)))){ $lineInfo = explode(',', $line); if (count($lineInfo) === 2) { $product = $lineInfo[0]; $department = $lineInfo[1]; $productList[] = array('product'=>$product, 'department' => $department); } }
Show:  
Copy Clear