PHP生成短连接的方法
Posted lovollll
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP生成短连接的方法相关的知识,希望对你有一定的参考价值。
php生成短连接的方法.md
PHP生成短连接的方法
直接贴上方法,函数可以查看手册。
<?php
/** 生成短网址
* @param String $url 原网址
* @return String
*/
function dwz($url){
$code=floatval(sprintf(‘%u‘, crc32($url)));
$surl=‘‘;
while($code){
$mod=fmod($code, 62);
if($mod>9 && $mod<35){
$mod=chr($mod + 61);
}
$surl .= $mod;
$code = floor($code/62);
}
return $surl;
}
//test
echo dwz(‘http://www.zyall.com‘);
以上是关于PHP生成短连接的方法的主要内容,如果未能解决你的问题,请参考以下文章
php 一个短代码片段准备在WooCommerce Thank You页面上输出货件跟踪UI。
laravel路由 实现短连接生成及跳转(php 301重定向)