Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 18th, 2010 | Syntax: PHP | Size: 0.25 KB | Hits: 104 | Expires: Never
Copy text to clipboard
  1. <?php
  2.  
  3. $cart = '333333,2222222222';
  4.  
  5.   $items = explode(',',$cart);
  6.   $contents = array();
  7.   foreach ($items as $item) {
  8.     $contents[(string)$item] = (isset($contents[(string)$item])) ? $contents[(string)$item] + 1 : 1;
  9.   }
  10. print_r($contents);
  11.  
  12. ?>