PHP code example of entere / utils

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

    

entere / utils example snippets


 namespace App\Http\Controllers;

use Entere\Utils;

class WelcomeController extends Controller {
    
    public function index()
    {
    	$params = ['name'=>'entere','age'=>4,'ip'=>'127.0.0.1'];
    	$key = 'entere';
        var_dump(Sign::getSign($params,$key));
    }
}