Skip to content

Instantly share code, notes, and snippets.

View GithubMrxia's full-sized avatar

Mrxia GithubMrxia

View GitHub Profile
@GithubMrxia
GithubMrxia / zip.php
Last active February 28, 2020 10:32
php解压zip文件并把所有图片放到制定目录下
<?php
$za = new ZipArchive();
$res = $za->open('test.zip');
if (!$res) {
return $this->respApiRequestFail('解压失败');
}
$path = storage_path('/path/to');
for ($i = 0; $i < $za->numFiles; $i++) {
$fileInfo = $za->statIndex($i);
@GithubMrxia
GithubMrxia / excel.php
Last active February 28, 2020 10:34
php操作excel
<?php
$spreadsheet = @IOFactory::load(storage_path('app/public/template/开票申请单模板.xls'));
$spreadsheet->setActiveSheetIndex(0);
$worksheet = $spreadsheet->getActiveSheet();
$worksheet->getCell('C2')->setValue(date('Y'));
$worksheet->getCell('C2')->setValue(date('Y'));
$worksheet->getCell('E2')->setValue(date('m'));
$worksheet->getCell('G2')->setValue(date('d'));
<?php
namespace App\Libs;
use Illuminate\Support\Facades\Redis;
class RedisLib
{
/**
* 加锁
@GithubMrxia
GithubMrxia / Auth.php
Last active March 26, 2020 06:44
Auth.php
<?php
namespace App\Libs\Auth;
use App\Libs\Auth\Jwt;
use App\Libs\RedisLib;
class Auth
{
@GithubMrxia
GithubMrxia / InvoiceController
Last active April 2, 2020 01:54
使用插件 Laravel Excel 导出 excel
<?php
namespace App\Http\Controllers\Invoice;
use App\Exports\MerchantInvoiceReviewExport;
use App\Http\Controllers\RestController;
use Illuminate\Http\Request;
use App\Models\MerchantInvoiceReview;
use Maatwebsite\Excel\Facades\Excel;
@GithubMrxia
GithubMrxia / SmsVerificationCode.php
Last active April 23, 2020 08:21
短信验证码
<?php
namespace App\Libs\Sms;
use App\Libs\Sms\Sms;
use App\Libs\RedisLib;
class SmsVerificationCode
{
protected $seedLimit = 60;
@GithubMrxia
GithubMrxia / regex.md
Last active May 6, 2020 09:22
常用正则表达式

类型|正则|备注 ---|---| 手机号| ^1[3456789]\d{9}$ 身份证号| ^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}(\d|x|X)$ 两位小数 | ^\d+(\.\d{1,2})?$| 可以为整数 两位小数 | (^(\d{2,}|[1-9])+(\.\d{1,2})?$)|(^0\.((\d[1-9])|([1-9]0?))$) | 可以为整数,最小0.01

@GithubMrxia
GithubMrxia / base.sh
Created May 15, 2020 03:06
unix 脚本
#!/bin/bash
# 分个字符串
function splitStr()
{
OLD_IFS=${IFS}
IFS=$2,
arr=($1)
IFS=${OLD_IFS}
}
@GithubMrxia
GithubMrxia / alpine
Last active May 21, 2020 07:11
docker alpine 基础镜像
FROM alpine:3.9.6
RUN set -xe \
&& apk add --no-cache --virtual .build-deps \
git \
&& apk add --no-cache \
tzdata \
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& echo "Asia/Shanghai" > /etc/timezone \
&& apk del .build-deps
<?php
// 生成流水号
if (! function_exists('generateSN')) {
function generateSN($prefix = '', int $length = 30) {
if (empty($prefix)) {
$prefix = 'PF';
}
$length = max(20, $length);
return str_pad($prefix . uniqid(date('YmdHis')), $length, mt_rand(0, 10000));