Guest User

Untitled

a guest
Jul 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. $array1 = [
  2. 'D1' => [
  3. 'venta' => 130
  4. ]
  5. ];
  6.  
  7. $array2 = [
  8. 'D1' => [
  9. 'abono' => -50
  10. ]
  11. ];
  12.  
  13. $arrayfinal = [
  14. 'D1' => [
  15. 'venta' => 130,
  16. 'abono' => -50,
  17. ]
  18. ]
Add Comment
Please, Sign In to add comment