fputcsv_002.phpt 610 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. --TEST--
  2. fputcsv(): Checking data after calling the function
  3. --FILE--
  4. <?php
  5. $file = __DIR__ .'/fgetcsv-test.csv';
  6. $data = array(1, 2, 'foo', 'haha', array(4, 5, 6), 1.3, null);
  7. $fp = fopen($file, 'w');
  8. fputcsv($fp, $data);
  9. var_dump($data);
  10. ?>
  11. --CLEAN--
  12. <?php
  13. $file = __DIR__ .'/fgetcsv-test.csv';
  14. unlink($file);
  15. ?>
  16. --EXPECTF--
  17. Warning: Array to string conversion in %s on line %d
  18. array(7) {
  19. [0]=>
  20. int(1)
  21. [1]=>
  22. int(2)
  23. [2]=>
  24. string(3) "foo"
  25. [3]=>
  26. string(4) "haha"
  27. [4]=>
  28. array(3) {
  29. [0]=>
  30. int(4)
  31. [1]=>
  32. int(5)
  33. [2]=>
  34. int(6)
  35. }
  36. [5]=>
  37. float(1.3)
  38. [6]=>
  39. NULL
  40. }