PHP code example of qq171787869 / think-helper

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

    

qq171787869 / think-helper example snippets


// 创建
Hash::make($value, $type = null, array $options = []);
Hash::make($value, 'md5', ['salt' = 'qq171787869']);

// 检查
Hash::check($value, $hashedValue, $type = null, array $options = []);
Hash::make($value, 'd1a53cf421c3f7466c4313dc5b87b50a', 'md5', ['salt' = 'qq171787869']);