如何使用php封装类实现图片上传可直接引用
程序员文章站
2022-05-31 23:34:17
...
class image { /** *完成图片的上传 * *@param array $file 待上传的文件信息的数组,用于5个元素的那个数组 *@return mixed 如果执行成功,返回上传了的文件名,否则返回false */ public function upload($file) { if($file['error'] == 0) { $allow_types = array('image/jpeg', 'image/pjpeg', 'image/png', 'image/gif'); if(in_array($file['type'], $allow_types)) { $maxsize = 2000000; if($file['size'] //------------------------------------------------------------------------------------- upload($img); mysql_connect('localhost','root','123'); mysql_select_db('lyb'); mysql_query('set names utf8'); $q = "insert test_image(name,url) values('$user','$img')"; //var_dump($q); $result = mysql_query($q); if($result){ echo "添加成功.....
"; } else{ echo "添加失败。。。"; } ?> //--------------------------------------------------------------------------------------图片上传类