crc32_basic.phpt 816 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. --TEST--
  2. Test crc32() function : basic functionality
  3. --SKIPIF--
  4. <?php
  5. if (PHP_INT_SIZE != 4)
  6. die("skip this test is for 32bit platform only");
  7. ?>
  8. --FILE--
  9. <?php
  10. /* Prototype : string crc32(string $str)
  11. * Description: Calculate the crc32 polynomial of a string
  12. * Source code: ext/standard/crc32.c
  13. * Alias to functions: none
  14. */
  15. /*
  16. * Testing crc32() : basic functionality
  17. */
  18. echo "*** Testing crc32() : basic functionality ***\n";
  19. // Initialise all required variables
  20. $str = 'string_val1234';
  21. // Calling crc32() with all possible arguments
  22. // checking for the return type of the function
  23. var_dump( is_int(crc32($str)) );
  24. // Printing the returned value from the function
  25. printf("%u\n", crc32($str) );
  26. echo "Done";
  27. ?>
  28. --EXPECTF--
  29. *** Testing crc32() : basic functionality ***
  30. bool(true)
  31. 256895812
  32. Done