This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Performs a 32-bit left shift operation (<<) even on a 64-bit machine | |
* | |
* @param integer $number Shift these bits | |
* | |
* @param integer $steps Step this many times | |
* | |
* @return string Returns the integer | |
*/ | |
function leftshift32 ($number, $steps) |