首页 > php教程 > php手册 > 正文

利用PHP实现短域名互转

WBOY
发布: 2016-06-06 20:28:34
原创
1145 人浏览过

如何使用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("#^ [|https://|ftp://]#iS", $url)) {
             返回 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); $ $ this- $ this-mem-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);
     }

     private function dec2any($num, $base=62, $index=false) {
         $out = '';
         如果 (! $base ) {
             $base = strlen($index);
         } else if (! $index ) {
             $index = substr("0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVW XYZ",0,$base);
         }
         $t = ($num == 0) ? 0 : floor(log10($num) / log10($base));
         for ($t; $t >= 0; $t--) {
             $a = floor($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.google.com',
     'http://www.jb51.net'
 );
 foreach ($url as $v) {
     $sort    = $app->encode($v);
     echo "sort link: ".$sort."n";
     $original    = $app->decode($sort);
     echo "original: ".$original."n";
 }
 ?>

,网站空间,美国服务器,香港服务器
相关标签:
php
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门推荐
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板