利用PHP实现短域名互转_php技巧
php
复制代码 代码如下:
/**
* 短域名生成&解析类
*/
class Build_URL {
private $mem;
private $base_url = 'http://xxx.com/';
公共函数 __construct() {
$mem_conf = array(
array(
'主机' => '192.168.10 .90',
'端口' => '11116' '端口' => '11117'
),
);
$this->mem = new Memcache();
foreach ($mem_conf as $v) {
$this->mem->addServer($v['host'], $v[' port']);
}
}
公共函数编码($url) {
$url = trim($url);
if(!preg_match("#^ [http://|https://|ftp://]#iS", $url)) {
return false;
}
$md5 = md5($url);
$aid = $this->mem->get($md5);
if(!$aid) {
if(($aid = $this->mem->increment('auto_increment_id) ')) === false) {
$this->mem->set('auto_increment_id', 10000);
$aid = $this->mem->increment('auto_increment_id' );
}
$this->mem->set($md5, $aid);
$key = $this->dec2any($aid);
$这—— >mem->set($key, $url);
} else {
$key = $this->dec2any($aid);
}
return $ this->base_url.$key;
}
公共函数解码($url) {
$key = str_replace($this->base_url, '', trim($url) );
return $this->mem->get($key);
}
私有函数 dec2any($num, $base=62, $index=false) {
$out = '';
if (! $base ) {
$base = strlen($index);
} else if (! $index ) {
$index = substr("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW XYZ",0,$base);
}
$t = ($num == 0) ? 0 : 楼层(log10($num) / log10($base));
for ($t; $t >= 0; $t--) {
$a = 楼层($num / pow ( $base, $t ));
$out = $out 。 substr($index, $a, 1);
$num = $num - ($a * pow( $base, $t ));
}
return $out;
}
}
$app = new Build_URL();
$url = array(
'http://www.baidu.com',
'http://www.baidu.com' google.com',
'http://www.jb51.net'
);
foreach ($url as $v) {
$sort = $app->encode($ v);
echo "排序链接:".$sort."n";
$original = $app->decode($sort);
echo "原始:".$original." n";
}
?>
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章
R.E.P.O.能量晶体解释及其做什么(黄色晶体)
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
击败分裂小说需要多长时间?
1 个月前
By DDD
R.E.P.O.保存文件位置:在哪里以及如何保护它?
1 个月前
By DDD
R.E.P.O.最佳图形设置
2 周前
By 尊渡假赌尊渡假赌尊渡假赌
刺客信条阴影:贝壳谜语解决方案
1 周前
By DDD

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

PHP 8.4 带来了多项新功能、安全性改进和性能改进,同时弃用和删除了大量功能。 本指南介绍了如何在 Ubuntu、Debian 或其衍生版本上安装 PHP 8.4 或升级到 PHP 8.4

CakePHP 是 PHP 的开源框架。它的目的是使应用程序的开发、部署和维护变得更加容易。 CakePHP 基于类似 MVC 的架构,功能强大且易于掌握。模型、视图和控制器 gu
