
PHP
roc1010
这个作者很懒,什么都没留下…
展开
-
PHP创建缩略图造成图片质量低下的完美解决方法
近期弄个论坛,在首页要有个排名,显示评论最多的前十位用户的列表,列表有个略图是用户最新上传的作品,如果使用原来的图,图片过大,首页加载过慢,因此要使用略图 以上来使用imagecopyresized这个函数,显示质量很差如图 后来改用imagecopyresampled效果明显改变效果如图 付上完整代码 01./** 02.* @name thum 缩略图函数 03.* @p原创 2012-11-19 13:19:01 · 554 阅读 · 0 评论 -
Copying an image from one server to another using PHP
If you have PHP5 and the HTTP stream wrapper enabled on your server, it's incredibly simple to copy it to a local file: copy('http://somedomain.com/file.jpeg', '/tmp/file.jpeg'); This will take ca原创 2015-10-12 13:51:44 · 525 阅读 · 0 评论 -
PHP设置多个域名301重定向到主域名代码
<?php $the_host = $_SERVER['HTTP_HOST'];//取得当前域名 $request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';//判断地址 后面是否有参数 if($the_host == 'baidu.com')//把...转载 2018-12-13 10:13:18 · 1110 阅读 · 0 评论