# PrimeModule-ext PHP extension for factorizing huge (up to 2^63-1) numbers (optimized for huge semiprimes). To compile it, simply install https://github.com/CopernicaMarketingSoftware/PHP-CPP and run `make && sudo make install` in this directory. API: ``` integer factorize( mixed $pq ) ``` Parameters: pq - The number to factorize, a string or an integer. Return value: an integer, containing one of the factors of the number. Example: ```