Function __global->crc32

Definitions

sources_custom/phpstub.php

  • Calculates the crc32 polynomial of a string.
  • Visibility: public
  • Is abstract?: No
  • Is static?: No
  • Is final?: No
  • Returns: int

Parameters

Name Type Passed by reference? Variadic? Default Set Range Description
$str string No No required parameter N/A N/A The string to get the CRC32 of

Returns

  • The CRC32
  • Type: integer
  • Set: N/A
  • Range: N/A

Preview

Code (PHP)

/**
 * Calculates the crc32 polynomial of a string.
 *
 * @param  string $str The string to get the CRC32 of
 * @return integer The CRC32
 */

function crc32(string $str) : int