PHP code example of easyswoole / compiler

1. Go to this page and download the library: Download easyswoole/compiler 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/ */

    

easyswoole / compiler example snippets


xxx_loader_lable

if(!function_exists("xxx_loader")){
   die('xxx_loader not install');
}
//encrypt part
xxxxxxxxxxx

SWOOLEC extension_loaded('swoole_loader') or die(' Loader ext not installed');


if(!function_exists("xxx_loader")){
   die('xxx_loader not install');
}


if(!function_exists("xxx_loader")){
   die('xxx_loader not install');
}
eval(encrypt part);

$info = xxx_loader->decode(encrypPart);
$license = $info->licenseCheck();
if($license){
    eval($info->realyCode);
}

var_dump(extension_loaded('easy_complier'));

var_dump(easy_complier_decrypt('$a = new \stdclass();return $a;'));