Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. public function add($product, $count)
  2. {
  3. $array = json_decode('
  4. [{
  5. "product": "test-search",
  6. "count": "2"
  7. }, {
  8. "product": "example-3",
  9. "count": "2"
  10. }, {
  11. "product": "example-2",
  12. "count": "3"
  13. }, {
  14. "product": "example-1",
  15. "count": "4"
  16. }]
  17. ');
  18. $product = [
  19. 'product' => $product,
  20. 'count' => $count
  21. ];
  22. array_unshift($array, $product);
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement