在好例子网,分享、交流、成长!
您当前所在位置:首页PHP 开发实例PHP语言基础 → 短网址源码

短网址源码

PHP语言基础

下载此实例
  • 开发语言:PHP
  • 实例大小:2.21M
  • 下载次数:10
  • 浏览次数:135
  • 发布时间:2022-11-02
  • 实例类别:PHP语言基础
  • 发 布 人:yefengya
  • 文件格式:.zip
  • 所需积分:4
 相关标签: 短网址 源码

实例介绍

【实例简介】短网址源码

一个简单的短网址源码

【实例截图】

from clipboard

【核心代码】

.
├── Docs
│   ├── URLRewrite
│   │   ├── Independent host
│   │   ├── Nginx.txt
│   │   ├── Virtural host
│   │   └── httpd.ini
│   ├── readme.txt
│   ├── rewrite.txt
│   └── update.txt
├── Uploads
│   ├── Admin
│   │   ├── Common
│   │   │   └── common.php
│   │   ├── Conf
│   │   │   └── config.php
│   │   ├── Lib
│   │   │   ├── Action
│   │   │   │   ├── AdminAction.class.php
│   │   │   │   ├── BackupAction.class.php
│   │   │   │   ├── ClearAction.class.php
│   │   │   │   ├── CommonAction.class.php
│   │   │   │   ├── ConfigAction.class.php
│   │   │   │   ├── FeedbackAction.class.php
│   │   │   │   ├── FileAction.class.php
│   │   │   │   ├── FileManageAction.class.php
│   │   │   │   ├── FriendlinkAction.class.php
│   │   │   │   ├── HelpAction.class.php
│   │   │   │   ├── IndexAction.class.php
│   │   │   │   ├── LabelAction.class.php
│   │   │   │   ├── LinkAction.class.php
│   │   │   │   ├── MemberAction.class.php
│   │   │   │   ├── PublicAction.class.php
│   │   │   │   └── TplAction.class.php
│   │   │   ├── Model
│   │   │   │   ├── FriendlinkViewModel.class.php
│   │   │   │   ├── InfoViewModel.class.php
│   │   │   │   ├── MemberViewModel.class.php
│   │   │   │   └── ViewModel.class.php
│   │   │   └── ORG
│   │   │       └── Page.class.php
│   │   └── Tpl
│   │       ├── Admin
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   └── index.html
│   │       ├── Backup
│   │       │   ├── index.html
│   │       │   ├── intsql.html
│   │       │   ├── repsql.html
│   │       │   ├── restore.html
│   │       │   └── upload.html
│   │       ├── Config
│   │       │   ├── index.html
│   │       │   ├── rewrite.html
│   │       │   └── thirdlogin.html
│   │       ├── Feedback
│   │       │   ├── index.html
│   │       │   └── show.html
│   │       ├── File
│   │       │   ├── attach.html
│   │       │   ├── null.html
│   │       │   ├── temp.html
│   │       │   └── thumb.html
│   │       ├── FileManage
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   ├── rename.html
│   │       │   ├── unzip.html
│   │       │   ├── upload.html
│   │       │   └── zip.html
│   │       ├── Friendlink
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   ├── groupadd.html
│   │       │   ├── groupedit.html
│   │       │   ├── index.html
│   │       │   └── js.html
│   │       ├── Help
│   │       │   └── show.html
│   │       ├── Index
│   │       │   ├── bottom.html
│   │       │   ├── center.html
│   │       │   ├── copy.html
│   │       │   ├── head.html
│   │       │   ├── index.html
│   │       │   ├── left.html
│   │       │   └── main.html
│   │       ├── Label
│   │       │   ├── add.html
│   │       │   ├── edit.html
│   │       │   └── index.html
│   │       ├── Link
│   │       │   ├── add.html
│   │       │   ├── allcount.html
│   │       │   ├── clean.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   └── vcount.html
│   │       ├── Member
│   │       │   ├── add.html
│   │       │   ├── addrank.html
│   │       │   ├── edit.html
│   │       │   ├── index.html
│   │       │   └── rank.html
│   │       ├── Public
│   │       │   ├── error.html
│   │       │   ├── info.html
│   │       │   ├── login.html
│   │       │   └── success.html
│   │       └── Tpl
│   │           ├── add.html
│   │           ├── edit.html
│   │           ├── error.html
│   │           └── index.html
│   ├── Core
│   │   ├── Common
│   │   │   ├── common.php
│   │   │   ├── functions.php
│   │   │   └── runtime.php
│   │   ├── Conf
│   │   │   ├── alias.php
│   │   │   ├── convention.php
│   │   │   ├── debug.php
│   │   │   └── tags.php
│   │   ├── Core.php
│   │   ├── Extend
│   │   │   └── Library
│   │   │       └── ORG
│   │   │           ├── Email.class.php
│   │   │           ├── File.class.php
│   │   │           ├── Image.class.php
│   │   │           ├── Mail.class.php
│   │   │           ├── PclZip.class.php
│   │   │           ├── Plugin.class.php
│   │   │           ├── String.class.php
│   │   │           ├── ThinkSDK
│   │   │           │   ├── ThinkOauth.class.php
│   │   │           │   └── sdk
│   │   │           │       ├── BaiduSDK.class.php
│   │   │           │       ├── DiandianSDK.class.php
│   │   │           │       ├── DoubanSDK.class.php
│   │   │           │       ├── GithubSDK.class.php
│   │   │           │       ├── GoogleSDK.class.php
│   │   │           │       ├── KaixinSDK.class.php
│   │   │           │       ├── MsnSDK.class.php
│   │   │           │       ├── QqSDK.class.php
│   │   │           │       ├── RenrenSDK.class.php
│   │   │           │       ├── SinaSDK.class.php
│   │   │           │       ├── SohuSDK.class.php
│   │   │           │       ├── T163SDK.class.php
│   │   │           │       ├── TaobaoSDK.class.php
│   │   │           │       ├── TencentSDK.class.php
│   │   │           │       └── X360SDK.class.php
│   │   │           ├── UploadFile.class.php
│   │   │           └── Verify.class.php
│   │   ├── Lang
│   │   │   ├── en-us.php
│   │   │   └── zh-cn.php
│   │   ├── Lib
│   │   │   ├── Behavior
│   │   │   │   ├── CheckRouteBehavior.class.php
│   │   │   │   ├── ContentReplaceBehavior.class.php
│   │   │   │   ├── LocationTemplateBehavior.class.php
│   │   │   │   ├── ParseTemplateBehavior.class.php
│   │   │   │   ├── ReadHtmlCacheBehavior.class.php
│   │   │   │   ├── ShowPageTraceBehavior.class.php
│   │   │   │   ├── ShowRuntimeBehavior.class.php
│   │   │   │   ├── TokenBuildBehavior.class.php
│   │   │   │   └── WriteHtmlCacheBehavior.class.php
│   │   │   ├── Core
│   │   │   │   ├── Action.class.php
│   │   │   │   ├── App.class.php
│   │   │   │   ├── Behavior.class.php
│   │   │   │   ├── Cache.class.php
│   │   │   │   ├── Db.class.php
│   │   │   │   ├── Dispatcher.class.php
│   │   │   │   ├── Log.class.php
│   │   │   │   ├── Model.class.php
│   │   │   │   ├── Think.class.php
│   │   │   │   ├── ThinkException.class.php
│   │   │   │   ├── View.class.php
│   │   │   │   └── Widget.class.php
│   │   │   ├── Driver
│   │   │   │   ├── Cache
│   │   │   │   │   └── CacheFile.class.php
│   │   │   │   ├── Db
│   │   │   │   │   ├── DbMysql.class.php
│   │   │   │   │   └── DbMysqli.class.php
│   │   │   │   └── TagLib
│   │   │   │       ├── TagLibCx.class.php
│   │   │   │       ├── TagLibDwz.class.php
│   │   │   │       └── TagLibWk.class.php
│   │   │   └── Template
│   │   │       ├── TagLib.class.php
│   │   │       └── ThinkTemplate.class.php
│   │   └── Tpl
│   │       ├── default_index.tpl
│   │       ├── dispatch_jump.tpl
│   │       ├── page_trace.tpl
│   │       └── think_exception.tpl
│   ├── Install
│   │   ├── ajax.js
│   │   ├── config.ini.php
│   │   ├── functions.php
│   │   ├── images
│   │   │   ├── ajax-loader.gif
│   │   │   ├── boxtitle_bg.gif
│   │   │   ├── but_back.gif
│   │   │   ├── but_next.gif
│   │   │   ├── ico-step-now.png
│   │   │   ├── ico-step-succeed.png
│   │   │   ├── leftbox-tbg.png
│   │   │   ├── loading1.gif
│   │   │   ├── step-ico-bg.png
│   │   │   ├── top-bg.png
│   │   │   └── top-logo.png
│   │   ├── index.php
│   │   ├── install_lock.txt
│   │   ├── myfav.ico
│   │   ├── sql-dfdata.txt
│   │   ├── sql-dfdemo.txt
│   │   ├── sql-dftables.txt
│   │   ├── style.css
│   │   ├── tablebox.css
│   │   └── templates
│   │       ├── step-1.html
│   │       ├── step-2.html
│   │       ├── step-3.html
│   │       └── step-5.html
│   ├── Public
│   │   ├── Admin
│   │   │   ├── images
│   │   │   │   ├── .gif
│   │   │   │   ├── -.gif
│   │   │   │   ├── 005.gif
│   │   │   │   ├── 311.gif
│   │   │   │   ├── Admin_css.css
│   │   │   │   ├── Rect.gif
│   │   │   │   ├── Thumbs.db
│   │   │   │   ├── add.gif
│   │   │   │   ├── arrow_082.gif
│   │   │   │   ├── bar1.gif
│   │   │   │   ├── bnt.gif
│   │   │   │   ├── bootstrap
│   │   │   │   │   ├── css
│   │   │   │   │   │   └── bootstrap.min.css
│   │   │   │   │   └── img
│   │   │   │   │       ├── glyphicons-halflings-white.png
│   │   │   │   │       └── glyphicons-halflings.png
│   │   │   │   ├── donate.gif
│   │   │   │   ├── file
│   │   │   │   │   ├── Thumbs.db
│   │   │   │   │   ├── css.gif
│   │   │   │   │   ├── dir.gif
│   │   │   │   │   ├── folder.gif
│   │   │   │   │   ├── gif.gif
│   │   │   │   │   ├── htm.gif
│   │   │   │   │   ├── html.gif
│   │   │   │   │   ├── jpg.gif
│   │   │   │   │   ├── js.gif
│   │   │   │   │   ├── last.gif
│   │   │   │   │   ├── other.gif
│   │   │   │   │   └── php.gif
│   │   │   │   ├── index.htm
│   │   │   │   ├── input_bg.gif
│   │   │   │   ├── left.gif
│   │   │   │   ├── login1.jpg
│   │   │   │   ├── login_r2_c2_r1_c1.jpg
│   │   │   │   ├── login_r2_c2_r1_c2.jpg
│   │   │   │   ├── login_r2_c2_r1_c3.jpg
│   │   │   │   ├── login_r2_c2_r1_c4.jpg
│   │   │   │   ├── login_r3_c2.jpg
│   │   │   │   ├── login_r3_c3.jpg
│   │   │   │   ├── login_r4_c3.jpg
│   │   │   │   ├── login_r4_c4_r1_c1.jpg
│   │   │   │   ├── login_r4_c4_r1_c2.jpg
│   │   │   │   ├── login_r4_c5.jpg
│   │   │   │   ├── login_r4_c6.jpg
│   │   │   │   ├── login_r5_c3.jpg
│   │   │   │   ├── login_r6_c2.jpg
│   │   │   │   ├── main_14.gif
│   │   │   │   ├── main_16.gif
│   │   │   │   ├── main_18.gif
│   │   │   │   ├── main_21.gif
│   │   │   │   ├── main_23.gif
│   │   │   │   ├── main_26.gif
│   │   │   │   ├── main_28.gif
│   │   │   │   ├── main_31.gif
│   │   │   │   ├── main_40.gif
│   │   │   │   ├── main_42.gif
│   │   │   │   ├── main_45.gif
│   │   │   │   ├── main_47.gif
│   │   │   │   ├── main_49.gif
│   │   │   │   ├── main_51.gif
│   │   │   │   ├── main_r1_c1.jpg
│   │   │   │   ├── main_r1_c2.jpg
│   │   │   │   ├── main_r1_c3.jpg
│   │   │   │   ├── main_r1_c4.jpg
│   │   │   │   ├── main_r1_c5.jpg
│   │   │   │   ├── main_r1_c6.jpg
│   │   │   │   ├── main_r1_c7.jpg
│   │   │   │   ├── menubg.gif
│   │   │   │   ├── myfav.ico
│   │   │   │   ├── nopic.png
│   │   │   │   ├── plugin_active.gif
│   │   │   │   ├── plugin_inactive.gif
│   │   │   │   ├── pop.css
│   │   │   │   ├── right.gif
│   │   │   │   ├── ruler.gif
│   │   │   │   ├── selcolor.html
│   │   │   │   ├── shouquan.gif
│   │   │   │   ├── spacer.gif
│   │   │   │   ├── t2_r1_c1.jpg
│   │   │   │   ├── t2_r1_c2.jpg
│   │   │   │   ├── t2_r1_c3.jpg
│   │   │   │   ├── t2_r1_c4.jpg
│   │   │   │   ├── t2_r1_c5.jpg
│   │   │   │   ├── t2_r1_c6.jpg
│   │   │   │   ├── tab_03.gif
│   │   │   │   ├── tab_05.gif
│   │   │   │   ├── tab_07.gif
│   │   │   │   ├── tab_12.gif
│   │   │   │   ├── tab_14.gif
│   │   │   │   ├── tab_15.gif
│   │   │   │   ├── tab_16.gif
│   │   │   │   ├── tab_20.gif
│   │   │   │   ├── tab_21.gif
│   │   │   │   ├── tab_22.gif
│   │   │   │   ├── unadd.gif
│   │   │   │   └── update.gif
│   │   │   ├── index.htm
│   │   │   ├── js
│   │   │   │   ├── Ajax.js
│   │   │   │   ├── Jquery.js
│   │   │   │   ├── admin.js
│   │   │   │   ├── bar.js
│   │   │   │   ├── bar_plan.gif
│   │   │   │   ├── getcity.js
│   │   │   │   ├── index.htm
│   │   │   │   ├── menuswitch.js
│   │   │   │   └── shownav.js
│   │   │   └── setdate
│   │   │       ├── My97DatePicker.htm
│   │   │       ├── WdatePicker.js
│   │   │       ├── calendar.js
│   │   │       ├── config.js
│   │   │       ├── index.htm
│   │   │       ├── lang
│   │   │       │   ├── en.js
│   │   │       │   ├── zh-cn.js
│   │   │       │   └── zh-tw.js
│   │   │       └── skin
│   │   │           ├── WdatePicker.css
│   │   │           ├── datePicker.gif
│   │   │           ├── default
│   │   │           │   ├── datepicker.css
│   │   │           │   ├── down.jpg
│   │   │           │   ├── img.gif
│   │   │           │   ├── left.gif
│   │   │           │   ├── navLeft.gif
│   │   │           │   ├── navRight.gif
│   │   │           │   ├── qs.jpg
│   │   │           │   ├── right.gif
│   │   │           │   └── up.jpg
│   │   │           └── whyGreen
│   │   │               ├── bg.jpg
│   │   │               ├── datepicker.css
│   │   │               ├── down.jpg
│   │   │               ├── img.gif
│   │   │               ├── left.gif
│   │   │               ├── navLeft.gif
│   │   │               ├── navRight.gif
│   │   │               ├── qs.jpg
│   │   │               ├── right.gif
│   │   │               └── up.jpg
│   │   ├── Backup
│   │   ├── Common
│   │   │   ├── Images
│   │   │   │   ├── error
│   │   │   │   │   ├── 1.gif
│   │   │   │   │   ├── 404-1.gif
│   │   │   │   │   └── 404-2.gif
│   │   │   │   └── logo.png
│   │   │   ├── Jquery
│   │   │   │   ├── Jquery.js
│   │   │   │   ├── ZeroClipboard.swf
│   │   │   │   ├── highcharts.js
│   │   │   │   ├── jquery.highchartTable.js
│   │   │   │   └── jquery.zclip.min.js
│   │   │   ├── Tpl
│   │   │   │   ├── error.htm
│   │   │   │   ├── link.htm
│   │   │   │   └── success.htm
│   │   │   ├── artDialog
│   │   │   │   ├── artDialog.js
│   │   │   │   ├── extend.js
│   │   │   │   ├── jquery.artDialog.js
│   │   │   │   ├── plugins
│   │   │   │   │   └── iframeTools.js
│   │   │   │   └── skins
│   │   │   │       ├── aero
│   │   │   │       │   ├── aero_s.png
│   │   │   │       │   ├── aero_s2.png
│   │   │   │       │   └── ie6
│   │   │   │       │       ├── aui_close.hover.png
│   │   │   │       │       ├── aui_close.png
│   │   │   │       │       ├── aui_e.png
│   │   │   │       │       ├── aui_n.png
│   │   │   │       │       ├── aui_ne.png
│   │   │   │       │       ├── aui_nw.png
│   │   │   │       │       ├── aui_s.png
│   │   │   │       │       ├── aui_se.png
│   │   │   │       │       ├── aui_sw.png
│   │   │   │       │       ├── aui_title_icon.png
│   │   │   │       │       └── aui_w.png
│   │   │   │       ├── aero.css
│   │   │   │       ├── black
│   │   │   │       │   ├── bg.png
│   │   │   │       │   ├── bg2.png
│   │   │   │       │   ├── bg_css3.png
│   │   │   │       │   ├── bg_css3_2.png
│   │   │   │       │   └── ie6
│   │   │   │       │       ├── close.hover.png
│   │   │   │       │       ├── close.png
│   │   │   │       │       ├── e.png
│   │   │   │       │       ├── n.png
│   │   │   │       │       ├── ne.png
│   │   │   │       │       ├── nw.png
│   │   │   │       │       ├── s.png
│   │   │   │       │       ├── se.png
│   │   │   │       │       ├── sw.png
│   │   │   │       │       └── w.png
│   │   │   │       ├── black.css
│   │   │   │       ├── blue
│   │   │   │       │   ├── bg.png
│   │   │   │       │   ├── bg2.png
│   │   │   │       │   ├── bg_css3.png
│   │   │   │       │   ├── bg_css3_2.png
│   │   │   │       │   └── ie6
│   │   │   │       │       ├── close.hover.png
│   │   │   │       │       ├── close.png
│   │   │   │       │       ├── e.png
│   │   │   │       │       ├── n.png
│   │   │   │       │       ├── ne.png
│   │   │   │       │       ├── nw.png
│   │   │   │       │       ├── s.png
│   │   │   │       │       ├── se.png
│   │   │   │       │       ├── sw.png
│   │   │   │       │       └── w.png
│   │   │   │       ├── blue.css
│   │   │   │       ├── chrome
│   │   │   │       │   ├── border.png
│   │   │   │       │   └── chrome_s.png
│   │   │   │       ├── chrome.css
│   │   │   │       ├── default.css
│   │   │   │       ├── green
│   │   │   │       │   ├── bg.png
│   │   │   │       │   ├── bg2.png
│   │   │   │       │   ├── bg_css3.png
│   │   │   │       │   ├── bg_css3_2.png
│   │   │   │       │   ├── color_bg.png
│   │   │   │       │   └── ie6
│   │   │   │       │       ├── close.hover.png
│   │   │   │       │       ├── close.png
│   │   │   │       │       ├── e.png
│   │   │   │       │       ├── n.png
│   │   │   │       │       ├── ne.png
│   │   │   │       │       ├── nw.png
│   │   │   │       │       ├── s.png
│   │   │   │       │       ├── se.png
│   │   │   │       │       ├── sw.png
│   │   │   │       │       └── w.png
│   │   │   │       ├── green.css
│   │   │   │       ├── icons
│   │   │   │       │   ├── error.png
│   │   │   │       │   ├── face-sad.png
│   │   │   │       │   ├── face-smile.png
│   │   │   │       │   ├── loading.gif
│   │   │   │       │   ├── question.png
│   │   │   │       │   ├── succeed.png
│   │   │   │       │   └── warning.png
│   │   │   │       ├── idialog
│   │   │   │       │   ├── idialog_s.png
│   │   │   │       │   ├── idialog_s2.png
│   │   │   │       │   └── ie6
│   │   │   │       │       ├── aui_close.hover.png
│   │   │   │       │       ├── aui_close.png
│   │   │   │       │       ├── aui_e.png
│   │   │   │       │       ├── aui_n.png
│   │   │   │       │       ├── aui_ne.png
│   │   │   │       │       ├── aui_nw.png
│   │   │   │       │       ├── aui_s.png
│   │   │   │       │       ├── aui_se.png
│   │   │   │       │       ├── aui_sw.png
│   │   │   │       │       └── aui_w.png
│   │   │   │       ├── idialog.css
│   │   │   │       ├── opera
│   │   │   │       │   ├── ie6
│   │   │   │       │   │   ├── aui_close.hover.png
│   │   │   │       │   │   ├── aui_close.png
│   │   │   │       │   │   ├── aui_e.png
│   │   │   │       │   │   ├── aui_n.png
│   │   │   │       │   │   ├── aui_ne.png
│   │   │   │       │   │   ├── aui_nw.png
│   │   │   │       │   │   ├── aui_s.png
│   │   │   │       │   │   ├── aui_se.png
│   │   │   │       │   │   ├── aui_sw.png
│   │   │   │       │   │   └── aui_w.png
│   │   │   │       │   ├── s1.png
│   │   │   │       │   └── s2.png
│   │   │   │       ├── opera.css
│   │   │   │       ├── simple.css
│   │   │   │       └── twitter.css
│   │   │   ├── codemirror
│   │   │   │   ├── codemirror.css
│   │   │   │   └── codemirror.js
│   │   │   ├── index.htm
│   │   │   └── uploadify
│   │   │       ├── jquery.uploadify.min.js
│   │   │       ├── uploadify-cancel.png
│   │   │       ├── uploadify.css
│   │   │       └── uploadify.swf
│   │   ├── Config
│   │   ├── Editor
│   │   │   └── kindeditor
│   │   │       ├── editor.php
│   │   │       ├── kindeditor-min.js
│   │   │       ├── lang
│   │   │       │   └── zh_CN.js
│   │   │       ├── mini
│   │   │       │   ├── doc.gif
│   │   │       │   ├── gif.gif
│   │   │       │   ├── jpg.gif
│   │   │       │   ├── pdf.gif
│   │   │       │   ├── png.gif
│   │   │       │   ├── ppt.gif
│   │   │       │   ├── rar.gif
│   │   │       │   ├── swf.gif
│   │   │       │   ├── txt.gif
│   │   │       │   ├── xls.gif
│   │   │       │   └── zip.gif
│   │   │       ├── php
│   │   │       │   ├── JSON.php
│   │   │       │   ├── ajax_file_delete.php
│   │   │       │   ├── ajax_file_rename.php
│   │   │       │   ├── file_manager_json.php
│   │   │       │   └── upload_json.php
│   │   │       ├── plugins
│   │   │       │   ├── anchor
│   │   │       │   │   └── anchor.js
│   │   │       │   ├── autoheight
│   │   │       │   │   └── autoheight.js
│   │   │       │   ├── baidumap
│   │   │       │   │   ├── baidumap.js
│   │   │       │   │   ├── index.html
│   │   │       │   │   └── map.html
│   │   │       │   ├── clearhtml
│   │   │       │   │   └── clearhtml.js
│   │   │       │   ├── code
│   │   │       │   │   ├── code.js
│   │   │       │   │   ├── prettify.css
│   │   │       │   │   └── prettify.js
│   │   │       │   ├── emoticons
│   │   │       │   │   ├── emoticons.js
│   │   │       │   │   └── images
│   │   │       │   │       ├── 0.gif
│   │   │       │   │       ├── 1.gif
│   │   │       │   │       ├── 10.gif
│   │   │       │   │       ├── 100.gif
│   │   │       │   │       ├── 101.gif
│   │   │       │   │       ├── 102.gif
│   │   │       │   │       ├── 103.gif
│   │   │       │   │       ├── 104.gif
│   │   │       │   │       ├── 105.gif
│   │   │       │   │       ├── 106.gif
│   │   │       │   │       ├── 107.gif
│   │   │       │   │       ├── 108.gif
│   │   │       │   │       ├── 109.gif
│   │   │       │   │       ├── 11.gif
│   │   │       │   │       ├── 110.gif
│   │   │       │   │       ├── 111.gif
│   │   │       │   │       ├── 112.gif
│   │   │       │   │       ├── 113.gif
│   │   │       │   │       ├── 114.gif
│   │   │       │   │       ├── 115.gif
│   │   │       │   │       ├── 116.gif
│   │   │       │   │       ├── 117.gif
│   │   │       │   │       ├── 118.gif
│   │   │       │   │       ├── 119.gif
│   │   │       │   │       ├── 12.gif
│   │   │       │   │       ├── 120.gif
│   │   │       │   │       ├── 121.gif
│   │   │       │   │       ├── 122.gif
│   │   │       │   │       ├── 123.gif
│   │   │       │   │       ├── 124.gif
│   │   │       │   │       ├── 125.gif
│   │   │       │   │       ├── 126.gif
│   │   │       │   │       ├── 127.gif
│   │   │       │   │       ├── 128.gif
│   │   │       │   │       ├── 129.gif
│   │   │       │   │       ├── 13.gif
│   │   │       │   │       ├── 130.gif
│   │   │       │   │       ├── 131.gif
│   │   │       │   │       ├── 132.gif
│   │   │       │   │       ├── 133.gif
│   │   │       │   │       ├── 134.gif
│   │   │       │   │       ├── 14.gif
│   │   │       │   │       ├── 15.gif
│   │   │       │   │       ├── 16.gif
│   │   │       │   │       ├── 17.gif
│   │   │       │   │       ├── 18.gif
│   │   │       │   │       ├── 19.gif
│   │   │       │   │       ├── 2.gif
│   │   │       │   │       ├── 20.gif
│   │   │       │   │       ├── 21.gif
│   │   │       │   │       ├── 22.gif
│   │   │       │   │       ├── 23.gif
│   │   │       │   │       ├── 24.gif
│   │   │       │   │       ├── 25.gif
│   │   │       │   │       ├── 26.gif
│   │   │       │   │       ├── 27.gif
│   │   │       │   │       ├── 28.gif
│   │   │       │   │       ├── 29.gif
│   │   │       │   │       ├── 3.gif
│   │   │       │   │       ├── 30.gif
│   │   │       │   │       ├── 31.gif
│   │   │       │   │       ├── 32.gif
│   │   │       │   │       ├── 33.gif
│   │   │       │   │       ├── 34.gif
│   │   │       │   │       ├── 35.gif
│   │   │       │   │       ├── 36.gif
│   │   │       │   │       ├── 37.gif
│   │   │       │   │       ├── 38.gif
│   │   │       │   │       ├── 39.gif
│   │   │       │   │       ├── 4.gif
│   │   │       │   │       ├── 40.gif
│   │   │       │   │       ├── 41.gif
│   │   │       │   │       ├── 42.gif
│   │   │       │   │       ├── 43.gif
│   │   │       │   │       ├── 44.gif
│   │   │       │   │       ├── 45.gif
│   │   │       │   │       ├── 46.gif
│   │   │       │   │       ├── 47.gif
│   │   │       │   │       ├── 48.gif
│   │   │       │   │       ├── 49.gif
│   │   │       │   │       ├── 5.gif
│   │   │       │   │       ├── 50.gif
│   │   │       │   │       ├── 51.gif
│   │   │       │   │       ├── 52.gif
│   │   │       │   │       ├── 53.gif
│   │   │       │   │       ├── 54.gif
│   │   │       │   │       ├── 55.gif
│   │   │       │   │       ├── 56.gif
│   │   │       │   │       ├── 57.gif
│   │   │       │   │       ├── 58.gif
│   │   │       │   │       ├── 59.gif
│   │   │       │   │       ├── 6.gif
│   │   │       │   │       ├── 60.gif
│   │   │       │   │       ├── 61.gif
│   │   │       │   │       ├── 62.gif
│   │   │       │   │       ├── 63.gif
│   │   │       │   │       ├── 64.gif
│   │   │       │   │       ├── 65.gif
│   │   │       │   │       ├── 66.gif
│   │   │       │   │       ├── 67.gif
│   │   │       │   │       ├── 68.gif
│   │   │       │   │       ├── 69.gif
│   │   │       │   │       ├── 7.gif
│   │   │       │   │       ├── 70.gif
│   │   │       │   │       ├── 71.gif
│   │   │       │   │       ├── 72.gif
│   │   │       │   │       ├── 73.gif
│   │   │       │   │       ├── 74.gif
│   │   │       │   │       ├── 75.gif
│   │   │       │   │       ├── 76.gif
│   │   │       │   │       ├── 77.gif
│   │   │       │   │       ├── 78.gif
│   │   │       │   │       ├── 79.gif
│   │   │       │   │       ├── 8.gif
│   │   │       │   │       ├── 80.gif
│   │   │       │   │       ├── 81.gif
│   │   │       │   │       ├── 82.gif
│   │   │       │   │       ├── 83.gif
│   │   │       │   │       ├── 84.gif
│   │   │       │   │       ├── 85.gif
│   │   │       │   │       ├── 86.gif
│   │   │       │   │       ├── 87.gif
│   │   │       │   │       ├── 88.gif
│   │   │       │   │       ├── 89.gif
│   │   │       │   │       ├── 9.gif
│   │   │       │   │       ├── 90.gif
│   │   │       │   │       ├── 91.gif
│   │   │       │   │       ├── 92.gif
│   │   │       │   │       ├── 93.gif
│   │   │       │   │       ├── 94.gif
│   │   │       │   │       ├── 95.gif
│   │   │       │   │       ├── 96.gif
│   │   │       │   │       ├── 97.gif
│   │   │       │   │       ├── 98.gif
│   │   │       │   │       ├── 99.gif
│   │   │       │   │       └── static.gif
│   │   │       │   ├── filemanager
│   │   │       │   │   ├── filemanager.js
│   │   │       │   │   └── images
│   │   │       │   │       ├── file-16.gif
│   │   │       │   │       ├── file-64.gif
│   │   │       │   │       ├── folder-16.gif
│   │   │       │   │       ├── folder-64.gif
│   │   │       │   │       └── go-up.gif
│   │   │       │   ├── flash
│   │   │       │   │   └── flash.js
│   │   │       │   ├── image
│   │   │       │   │   ├── image.js
│   │   │       │   │   └── images
│   │   │       │   │       ├── align_left.gif
│   │   │       │   │       ├── align_right.gif
│   │   │       │   │       ├── align_top.gif
│   │   │       │   │       └── refresh.png
│   │   │       │   ├── insertfile
│   │   │       │   │   └── insertfile.js
│   │   │       │   ├── lineheight
│   │   │       │   │   └── lineheight.js
│   │   │       │   ├── link
│   │   │       │   │   └── link.js
│   │   │       │   ├── map
│   │   │       │   │   ├── map.html
│   │   │       │   │   └── map.js
│   │   │       │   ├── media
│   │   │       │   │   └── media.js
│   │   │       │   ├── multifile
│   │   │       │   │   ├── images
│   │   │       │   │   │   ├── image.png
│   │   │       │   │   │   ├── select-files-en.png
│   │   │       │   │   │   ├── select-files-zh_CN.png
│   │   │       │   │   │   └── swfupload.swf
│   │   │       │   │   └── multifile.js
│   │   │       │   ├── multiimage
│   │   │       │   │   ├── images
│   │   │       │   │   │   ├── image.png
│   │   │       │   │   │   ├── select-files-en.png
│   │   │       │   │   │   ├── select-files-zh_CN.png
│   │   │       │   │   │   └── swfupload.swf
│   │   │       │   │   └── multiimage.js
│   │   │       │   ├── pagebreak
│   │   │       │   │   └── pagebreak.js
│   │   │       │   ├── plainpaste
│   │   │       │   │   └── plainpaste.js
│   │   │       │   ├── preview
│   │   │       │   │   └── preview.js
│   │   │       │   ├── quickformat
│   │   │       │   │   └── quickformat.js
│   │   │       │   ├── table
│   │   │       │   │   └── table.js
│   │   │       │   ├── template
│   │   │       │   │   ├── html
│   │   │       │   │   │   ├── 1.html
│   │   │       │   │   │   ├── 2.html
│   │   │       │   │   │   └── 3.html
│   │   │       │   │   └── template.js
│   │   │       │   └── wordpaste
│   │   │       │       └── wordpaste.js
│   │   │       └── themes
│   │   │           ├── common
│   │   │           │   ├── anchor.gif
│   │   │           │   ├── blank.gif
│   │   │           │   ├── flash.gif
│   │   │           │   ├── loading.gif
│   │   │           │   ├── media.gif
│   │   │           │   └── rm.gif
│   │   │           ├── default
│   │   │           │   ├── background.png
│   │   │           │   ├── default-bak.png
│   │   │           │   ├── default.css
│   │   │           │   └── default.png
│   │   │           ├── qq
│   │   │           │   ├── editor.gif
│   │   │           │   └── qq.css
│   │   │           └── simple
│   │   │               └── simple.css
│   │   ├── Uploads
│   │   │   ├── file
│   │   │   │   ├── apitable.doc
│   │   │   │   ├── dwz-ie-menu.zip
│   │   │   │   ├── dwz.crx
│   │   │   │   ├── dwz2.zip
│   │   │   │   ├── index.htm
│   │   │   │   └── phpurl.zip
│   │   │   ├── flash
│   │   │   │   └── index.htm
│   │   │   ├── image
│   │   │   │   └── index.htm
│   │   │   ├── index.htm
│   │   │   └── media
│   │   │       └── index.htm
│   │   ├── User
│   │   │   ├── css
│   │   │   │   ├── api.gif
│   │   │   │   ├── bootstrap-responsive.min.css
│   │   │   │   ├── bootstrap.min.css
│   │   │   │   ├── lock.gif
│   │   │   │   ├── logo.png
│   │   │   │   ├── note.gif
│   │   │   │   ├── tongji.gif
│   │   │   │   ├── visit.gif
│   │   │   │   ├── visitlimits.gif
│   │   │   │   └── yoururl.gif
│   │   │   ├── diy
│   │   │   │   └── logo.png
│   │   │   ├── img
│   │   │   │   ├── avtar_big.jpg
│   │   │   │   ├── avtar_small.jpg
│   │   │   │   ├── baidu_login_big.png
│   │   │   │   ├── diandian_login_big.png
│   │   │   │   ├── douban_login_big.png
│   │   │   │   ├── download-bg.jpg
│   │   │   │   ├── download-chrome-bg.jpg
│   │   │   │   ├── download-ie-bg.jpg
│   │   │   │   ├── glyphicons-halflings-white.png
│   │   │   │   ├── glyphicons-halflings.png
│   │   │   │   ├── google_login_big.png
│   │   │   │   ├── index.htm
│   │   │   │   ├── indextips.gif
│   │   │   │   ├── kaixin_login_big.png
│   │   │   │   ├── logo.png
│   │   │   │   ├── minibaidu.png
│   │   │   │   ├── minidiandian.png
│   │   │   │   ├── minidouban.png
│   │   │   │   ├── minigoogle.png
│   │   │   │   ├── minikaixin.png
│   │   │   │   ├── minimsn.png
│   │   │   │   ├── miniqq.png
│   │   │   │   ├── minirenren.png
│   │   │   │   ├── minisohu.png
│   │   │   │   ├── minit163.png
│   │   │   │   ├── minitaobao.png
│   │   │   │   ├── minitencent.png
│   │   │   │   ├── minitx360.png
│   │   │   │   ├── miniweibo.png
│   │   │   │   ├── minix360.png
│   │   │   │   ├── msn_login_big.png
│   │   │   │   ├── qq_login.gif
│   │   │   │   ├── qq_login.png
│   │   │   │   ├── qq_login_big.png
│   │   │   │   ├── renren_login_big.png
│   │   │   │   ├── safe
│   │   │   │   │   ├── 360.png
│   │   │   │   │   ├── anquan.png
│   │   │   │   │   └── scanv.png
│   │   │   │   ├── soft
│   │   │   │   │   ├── btn.png
│   │   │   │   │   ├── button.gif
│   │   │   │   │   ├── logo.gif
│   │   │   │   │   ├── subtitle.gif
│   │   │   │   │   └── update.gif
│   │   │   │   ├── sohu_login_big.png
│   │   │   │   ├── t163_login_big.png
│   │   │   │   ├── taobao_login_big.png
│   │   │   │   ├── tencent_login_big.png
│   │   │   │   ├── wait.gif
│   │   │   │   ├── wbg.gif
│   │   │   │   ├── weibo_login_big.png
│   │   │   │   └── x360_login_big.png
│   │   │   ├── js
│   │   │   │   ├── Jquery.js
│   │   │   │   └── bootstrap.min.js
│   │   │   └── level
│   │   │       ├── 01.gif
│   │   │       ├── 02.gif
│   │   │       ├── 03.gif
│   │   │       ├── 04.gif
│   │   │       ├── 05.gif
│   │   │       ├── 06.gif
│   │   │       ├── 07.gif
│   │   │       ├── 08.gif
│   │   │       ├── 09.gif
│   │   │       ├── 10.gif
│   │   │       ├── 11.gif
│   │   │       ├── 12.gif
│   │   │       ├── 13.gif
│   │   │       ├── 14.gif
│   │   │       ├── 15.gif
│   │   │       ├── 16.gif
│   │   │       ├── 17.gif
│   │   │       ├── 18.gif
│   │   │       ├── 19.gif
│   │   │       ├── 20.gif
│   │   │       ├── 21.gif
│   │   │       ├── 22.gif
│   │   │       ├── 23.gif
│   │   │       ├── 24.gif
│   │   │       ├── 25.gif
│   │   │       ├── 26.gif
│   │   │       ├── 27.gif
│   │   │       ├── 28.gif
│   │   │       ├── 29.gif
│   │   │       ├── 30.gif
│   │   │       ├── 31.gif
│   │   │       └── vip.gif
│   │   ├── Verify
│   │   │   ├── fonts
│   │   │   │   └── ggbi.ttf
│   │   │   ├── sessions
│   │   │   ├── vdcode.jpg
│   │   │   └── words
│   │   │       └── words.txt
│   │   └── Web
│   │       ├── img
│   │       │   ├── button_1.gif
│   │       │   ├── button_2.gif
│   │       │   ├── button_3.gif
│   │       │   ├── favicon.ico
│   │       │   ├── fenxiang_1.gif
│   │       │   ├── kuang_1.gif
│   │       │   ├── kuang_2.gif
│   │       │   ├── kuang_3.gif
│   │       │   ├── logo.gif
│   │       │   ├── nav.gif
│   │       │   ├── nav_3.gif
│   │       │   └── pwd
│   │       │       ├── 1.gif
│   │       │       ├── 404-1.gif
│   │       │       └── 404-2.gif
│   │       └── js
│   │           ├── ZeroClipboard.js
│   │           ├── index.js
│   │           └── jquery.js
│   ├── Web
│   │   ├── Common
│   │   │   └── common.php
│   │   ├── Conf
│   │   │   └── config.php
│   │   ├── Lib
│   │   │   ├── Action
│   │   │   │   ├── ApiAction.class.php
│   │   │   │   ├── CommonAction.class.php
│   │   │   │   ├── IndexAction.class.php
│   │   │   │   ├── PublicAction.class.php
│   │   │   │   └── UserAction.class.php
│   │   │   ├── Event
│   │   │   │   └── TypeEvent.class.php
│   │   │   ├── Model
│   │   │   │   ├── InfoVisitViewModel.class.php
│   │   │   │   ├── MemberViewModel.class.php
│   │   │   │   └── ViewModel.class.php
│   │   │   └── ORG
│   │   │       └── Page.class.php
│   │   └── Tpl
│   │       ├── Api
│   │       │   ├── addall.html
│   │       │   ├── ie.html
│   │       │   └── soft.html
│   │       ├── Index
│   │       │   └── index.html
│   │       ├── Public
│   │       │   ├── about.html
│   │       │   ├── allhelp.html
│   │       │   ├── download.html
│   │       │   ├── error.html
│   │       │   ├── fankui.html
│   │       │   ├── feedback.html
│   │       │   ├── footer.html
│   │       │   ├── head.html
│   │       │   ├── help.html
│   │       │   ├── left.html
│   │       │   ├── lianxi.html
│   │       │   ├── link.html
│   │       │   ├── login.html
│   │       │   ├── productsets.html
│   │       │   ├── question.html
│   │       │   ├── reg.html
│   │       │   ├── reurl.html
│   │       │   ├── safecx.html
│   │       │   ├── success.html
│   │       │   ├── touzi.html
│   │       │   └── union.html
│   │       └── User
│   │           ├── addall.html
│   │           ├── addurl.html
│   │           ├── doaddall.html
│   │           ├── domain.html
│   │           ├── editmyfile.html
│   │           ├── fenxi.html
│   │           ├── fenxiall.html
│   │           ├── myfile.html
│   │           ├── piccount.html
│   │           ├── piccountfenxi.html
│   │           ├── piccountfenxiall.html
│   │           ├── repassword.html
│   │           ├── site.html
│   │           ├── update.html
│   │           └── vcount.html
│   ├── admin.php
│   └── index.php
├── 说明.htm
└── 一个简单的短网址源码_dwz_v3.0.1107.zip

161 directories, 835 files


标签: 短网址 源码

实例下载地址

短网址源码

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警