摘要:
1.http://www.snippetit.com/2009/04/php-short-url-algorithm-implementation/The following code is written according to the algorithm above excluding the database checking part for duplication:function shorturl($input) {$base32 = array ('a', 'b', 'c', 'd', 'e', & 阅读全文
摘要:
1 is.gd 他这个api简单:http://is.gd/api.php?longurl= 后面加网址就可以返回短址2Google URL Shortener API api地址:http://code.google.com/intl/zh-CN/apis/urlshortener/v1/getting_started.htmlfix yourself in right way,fix the world in right codes 阅读全文
摘要:
1.PHP生成二维码图像的类QRcodehttp://www.phper.org.cn/?post=128QRcode是用于生成二维条形码的开放源码 (LGPL) 库。提供 API 创建条码图像。使用方法如下:include('QRcode.php');// QRcode::png ('http://www.phper.org.cn', 'image.png'); // 导出图像QRcode::png ('http://www.phper.org.cn');更多的信息请参阅http://phpqrcode.sourceforge. 阅读全文
摘要:
http://dongxin1390008.blog.163.com/blog/static/3179247820094279581256/通常情况下,我们有时候需要架设多个站点比如 我的web站点都放置在D:/www下,那么下面有3个站点的文件,分别是D:/www/abcD:/www/cdeD:/www/xyz那么为了能够在本地能测试到像http://www.xx.com的效果,怎么办呢?打开apache的httpd.conf文件,在文件的最后加上这么一段代码#这个对应第一个站点D:/www/abc,ServerName可以任意设置 ServerAdminwebmaster@axx.cn D 阅读全文