本文实例讲述了thinkphp框架实现ftp图片上传功能。分享给大家供大家参考,具体如下:
背景:
图片上传功能应该是个极为普遍的,在此参考了thinkphp 框架中的集成方法整理了一下ftp图片的上传功能,这样方便在后台操作时,把有关的图片直接上传到线上的图片服务器,避免大流量访问的图片加载缓慢,降低网站的访问压力,不合理之处,敬请指摘...
操作:
1.前端设计
这里主要为了测试功能的实现,使用最简单的设计,既方便参考又有利于后期的功能扩展。如下附upload.html主要代码,着重注意红框圈出的代码,其中css样式比较简单,需要的可以参考后面的源代码。
2.后台控制器设计
config.class.php 主要代码如下所示,其中设计的表“conf”在此只需用两个字段就好——'tag','value',可以使用简单的varchar类型。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
public function upload(){
if (is_post){
foreach ( $_files as $key => $value ){
$img = handleimg( $key );
$furl = c( 'remote_root' ). $img ;
if ( $img ){
ftp_upload( $furl , $img );
$savedata [ 'value' ] = $img ;
m( 'conf' )
->where( "tag = '" . $key . "'" )
->save( $savedata );
}
}
$this ->success( 'ftp 测试完成' ,u( 'config/upload' ),2);
} else {
$imgurl = m( 'conf' )
->where( "tag = 'upimg'" )
->getfield( 'value' );
$this ->assign( 'imgurl' , $imgurl );
$this ->display();
}
}
|
3.配置数据
在公共配置文件中,进行如下常量的数据配置,参考代码如下,注意配置ftp 账号及密码的正确性,此处安全起见只是举例。
1
2
3
4
5
6
7
8
9
10
11
12
|
//ftp(外网服务器)上传文件相关参数
'ftp_sever' => 'http://img.52zhenmi.com' , //此地址,作为图片读取的位置 请上线前仔细确认
'ftp_host' => 'img.52zhenmi.com' ,
'web_sever' => 'http://img.52zhenmi.com' ,
'web_m_server' => 'http://www.52zhenmi.com/m' ,
'ftp_name' => 'fexxxi' , //ftp帐户
'ftp_pwd' => '1qxxxxxxw' , //ftp密码
'ftp_port' => '21' , //ftp端口,默认为21
'ftp_pasv' => true, //是否开启被动模式,true开启,默认不开启
'ftp_ssl' => false, //ssl连接,默认不开启
'ftp_timeout' => 60, //超时时间,默认60,单位 s
'remote_root' => '/' , //图片服务器根目录
|
4.引入文件
以我的代码为例,在此引用了两个文件,其中的ftp.class.php 放在了'/library/think' 目录下;upload.class.php 放在了'/library/org/net'目录下,可根据自己的使用习惯自行调整目录,只要保证实例化路径时没问题就可。
5.公共函数添加
注意添加上文步骤2中使用到的公共函数。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/**
* 图片上传的公共处理方法
* @param string $filename 图片上传的name
* @return string 图片的存储路径
*/
function handleimg( $filename ){
if ( $_files [ $filename ][ 'tmp_name' ] != "" ){
$img = $_files [ $filename ];
$imgurl = __root__. "/public" ;
$upload = new \org\net\upload( $img , $imgurl );
return $upload ->main();
}
}
//ftp上传文件函数
function ftp_upload( $remotefile , $localfile ){
$ftp = new \think\ftp();
$data [ 'server' ] = c( 'ftp_host' );
$data [ 'username' ] = c( 'ftp_name' ); //ftp帐户
$data [ 'password' ] = c( 'ftp_pwd' ); //ftp密码
$data [ 'port' ] = c( 'ftp_port' ); //ftp端口,默认为21
$data [ 'pasv' ] = c( 'ftp_pasv' ); //是否开启被动模式,true开启,默认不开启
$data [ 'ssl' ] = c( 'ftp_ssl' ); //ssl连接,默认不开启
$data [ 'timeout' ] = c( 'ftp_timeout' ); //超时时间,默认60,单位 s
$info = $ftp ->start( $data );
if ( $info ){
if ( $ftp ->put( $remotefile , $localfile )){}
}
$ftp ->close();
}
|
6.操作截图
7.提示
对于这份参考代码,涉及到的公共方法handleimg()
会先将需要上传的图片传到当前操作的网站根目录,之后又会通过ftp_upload()
将图片传到对应的图片ftp服务器,从实现步骤上看第一步多余,主要是开发过程中的测试服务器不符合ftp账号要求,同时又要方便线上内容修改的及时更新,暂没优化,也不麻烦,算留大家一个*发挥的机会吧。
源代码点击此处本站下载。
希望本文所述对大家基于thinkphp框架的php程序设计有所帮助。
原文链接:https://blog.csdn.net/u011415782/article/details/71743613