PHP code example of four-li / utils

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

    

four-li / utils example snippets




// 使用PHP二维码库
$client = new FourLi\Tools\QrCode\PhpQrcode();
# 生成二维码
$client->setLogo(__DIR__ . '/../Qrcode/logo.jpg', 100, 100)# 设置logo
//->setSize(300)# 设置生成二维码的大小 px
//->setMargin(10) # 设置二维码的边距 px
//->setBackgroudColor('red')# 设置背景色 (二维码后面的背景色 一般为白色)
//->setForegroundColor('yellow') # 设置前景色(二维码的颜色 一般为黑色)
;

# 要保存二维码图片的路径
$savePath = __DIR__ . '/../QrCode/test.png';
$client->generator('https://github.com/four-li/tools', $savePath)//->download('下载二维码名字.png') # 直接浏览器下载
;

# 解析二维码
$img    = __DIR__ . '/../Qrcode/test.png';
$client = new FourLi\Tools\QrCode\PhpQrcode();
$text   = $client->reader($img);
var_dump($text);

// 如解析ip地址
$client = new FourLi\Tools\Ip\IpResolver();
$ret = $client->resolveIpToRegions('60.1.2.1');
var_dump($ret);