xiajin2015/utils

this is xiajin2015 utils bag

1.0.0 2023-12-06 07:26 UTC

This package is auto-updated.

Last update: 2024-04-07 02:16:48 UTC


README

2023-11-25 初始化

2023-12-6 发布相应工具接口

使用方法如下:

<?php

require "../vendor/autoload.php";


use Xiajin2015\Utils\Date;
use Xiajin2015\Utils\Random;

$result = Date::span('1698811683', time());
echo '<pre>';
var_dump($result);
echo '<hr/>';
$result = Random::alnum(6);
echo '<pre>';
var_dump($result);