bindec_basic.phpt 839 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. --TEST--
  2. Test bindec() - basic function test bindec()
  3. --SKIPIF--
  4. <?php
  5. if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only");
  6. ?>
  7. --INI--
  8. precision=14
  9. --FILE--
  10. <?php
  11. $values = array(111000111,
  12. 011100000,
  13. 1111111111111111111111111111111,
  14. 10000000000000000000000000000000,
  15. 100002001,
  16. '111000111',
  17. '011100000',
  18. '1111111111111111111111111111111',
  19. '10000000000000000000000000000000',
  20. '100002001',
  21. 'abcdefg',
  22. 311015,
  23. 31101.3,
  24. 31.1013e5,
  25. 0x111ABC,
  26. 011237,
  27. true,
  28. false,
  29. null);
  30. for ($i = 0; $i < count($values); $i++) {
  31. $res = bindec($values[$i]);
  32. var_dump($res);
  33. }
  34. ?>
  35. --EXPECTF--
  36. int(455)
  37. int(0)
  38. int(32766)
  39. int(5)
  40. int(129)
  41. int(455)
  42. int(224)
  43. int(2147483647)
  44. float(2147483648)
  45. int(129)
  46. int(0)
  47. int(13)
  48. int(13)
  49. int(26)
  50. int(6)
  51. int(0)
  52. int(1)
  53. int(0)
  54. int(0)