PHP code example of kamerk22 / ipfuscator

1. Go to this page and download the library: Download kamerk22/ipfuscator library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

kamerk22 / ipfuscator example snippets


use kamerk22\IPFuscator\IPFuscator;

IPFuscator::getDecimal($ip);

IPFuscator::getOctal($ip);

IPFuscator::getHexadecimal($ip);

IPFuscator::getFullOct($ip);

IPFuscator::getFullHex($ip);

IPFuscator::getRandomOctPad($ip);

IPFuscator::getRandomHexPad($ip);

IPFuscator::getRandomBase($ip);

IPFuscator::getRandomBaseWithRandomPad($ip);