fork download
  1. <?php
  2.  
  3. $keys_string = '"Datasheets" "Image" "Digi-Key Part Number" "Manufacturer Part Number" "Manufacturer" "Description" "Quantity Available" "Factory Stock" "Unit Price (USD)" "@ qty" "Minimum Quantity" "Series" "Accessory Type" "Material" "Color" "For Use With/Related Products"';
  4. $values_string = '"http://w...content-available-to-author-only...s.com/eng/content/download/3165/37817/version/2/file/bf-1861-000.pdf","http://m...content-available-to-author-only...y.com/Photos/Knowles%20Acoustics%20Photos/BF-1861-000.jpg","423-1158-ND","BF-1861-000","Knowles","ACOUSTIC DAMPER 1500 OHMS",1067,0,"1.67000",0,1,"BF","Damper","Metal Ferrule Housing","Green","Hearing Aids"';
  5.  
  6. $keys = explode(' ', $keys_string);
  7. $values = explode(',', $values_string);
  8.  
  9. $data = array_combine($keys, $values);
  10. print_r($data);
Success #stdin #stdout #stderr 0.02s 25712KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
PHP Warning:  array_combine(): Both parameters should have an equal number of elements in /home/XymiQq/prog.php on line 9