-
php 图片上传代码例子
下面来为你免费提供一款php 图片上传代码,如果你正在找文件上传的图片代码就进来看看吧,这是一款只支持jpg,gif,png,swf文件上传的php实例代码.
PHP实例代码如下:
- <?php
- if($_FILES['file']){
- // 上传设置
- $maxsize=10002400; //最大允许上传的文件大小
- $alltype=array(".jpg",".JPG",".GIF",".gif",".png",".swf"); //所有允许上传的文件类型
- $imgtype=array(".jpg",".JPG",".GIF",".gif",".png",".swf"); //图片类型
- // 判断文件大小
- if($_FILES['file']['size']>$maxsize) {
- echo "您上传的资料大于10000K";
- exit;
- }
- // 判断文件类型
- $type=strstr($_FILES['file']['name'],".");
- if(!in_array($type,$alltype)){
- echo "不允许上传该类型的文件";
- exit;
- }
- $updir="uploaddir";
- $time=date("Ymd-His",time());
- $fn=$time.$type;
- $destination=$updir."/".$fn;
- if(@move_uploaded_file($_FILES['file']['tmp_name'], $destination)){
- @chmod($destination, 0777);
- $fileurl=$updir."/".$destination;
- $fileurl="".$destination;
- }else{
- echo "上传失败!";
- echo "<script>location.href=history.back()</script>";
- }
- // ----------------------------------------------------------------------------------------------//
- }//开源代码phpfensi.com
- if($back=="no"):
- echo "ok";
- exit;
- endif;
- ?>
html代码如下:
- <html>
- <head>
- <title>添加图片</title>
- <script language="JavaScript">
- function isnull()
- {
- if(document.all.fileurl.value!="")insert();
- }
- function insert()
- {
- images='<img style="cursor:hand" src="'+insertpic.fileurl.value+'">';
- edit = window.opener.document.mode_iframe.document.selection.createRange();
- edit.pasteHTML (images);
- window.close();
- }
- </script>
- <style>
- BODY { FONT-SIZE: 12px; FONT-FAMILY: tahoma,宋体;}
- TABLE { empty-cells: show;}
- TD { FONT-SIZE: 12px; COLOR: #000000; FONT-FAMILY: tahoma,宋体;margin: 5}
- </style>
- </head>
- <body leftMargin=12 topMargin=12 marginwidth=2 marginheight=2 bgcolor='#D6D3CE' style="border:0px" onload=isnull()>
- <form action=<?=$_SERVER['PHP_SELF']?> name=insertpic enctype=multipart/form-data method=post>
- <table>
- <tr>
- <td></td>
- <td width=60>上传图片</td>
- <td>
- <input class=mmcinb type="file" name="file" size="14">
- <input class=mmcinb type="submit" value="上传"></td>
- </tr>
- <tr>
- <td></td>
- <td>图片URL</td>
- <td><input class=mmcinb type="text" name="fileurl" value="<?=$fileurl?>" size="26">
- <button onclick=insert()>插入</button></td>
- </tr>
- <tr>
- <td></td>
- <td colspan=2 align=left><font color=red>可以直接输入图片的URL,点击插入即可(不能有中文)<br>
- </font></td>
- </tr>
- </table>
- </form>
- <script language="JavaScript">
- <!--
- //picurl.focus();
- //-->
- </script>
- </body>
- </html>
出处:http://www.phpfensi.com/php/20140818/4382.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式