动网论坛,站长建站首选,国内使用量最多的论坛软件 动网论坛官方技术讨论区 站长工具 申请属于您自己的免费论坛
首页 | 新闻资讯 | 网站运营 | 网络编程 | 数据库 | 服务器 | 网页设计 | 图像媒体 | 网络应用 | 搜索优化 | 资源下载 | 动网主机 | DVBOX
    本站内  互联网 ASP论坛  ASP.Net论坛  PHP论坛
   PHP → 阅读文章

 Oracle中图片的存贮与显示例程

作者来源: 
阅读 数 461 人次 , 2006-4-18 17:23:00 


   //store.php
<HTML>
<HEAD><TITLE>Store binary data into Oracle Database</TITLE></HEAD>
<BODY>

<?php
// 如果提交了表单,代码将被执行:
dl("php_oci8.dll");
$conn = OCILogon("scott","tiger");
if ($submit) {

echo "File name: <b>$userfile_name</b><br>\n";
echo "File size: <b>$userfile_size</b><br>\n";

$hwsize = GetImageSize($userfile );
$w = $hwsize[0];
$h = $hwsize[1];
echo "Image width: <b>$w</b><br>\n";
echo "Image height: <b>$h</b><br>\n";

$ImgType = strtolower(substr( strrchr( $userfile_name, "." ), 1 ) );
if ($ImgType == "jpg")
  $ImgType = "jpeg";
echo "Image type: <b>$ImgType</b><br>\n";

echo "Created date; <b>".date('Y-m-d')."</b><br>\n";


$sql = "insert into
Picture (PicId, UserName, Width, Height, ImgSize, ImgType, Created, Image, FileName, Description)
values(PicturePicId.nextval, '$username', $w, $h, '$userfile_size', '$ImgType', TO_DATE('".date('Y-m-d')."','YYYY-MM-DD'), EMPTY_BLOB(), '$userfile_name', '$description')
returning Image into :Image";

echo "<pre>$sql</pre>";
$stmt = OCIParse($conn, $sql );

$Image = OCINewDescriptor($conn );

OCIBindByName($stmt, ":Image", $Image, -1, SQLT_BLOB );

if (!OCIExecute($stmt, OCI_DEFAULT)) {
  echo "Execution failed";
  exit(1);
}

$fp = fopen($userfile, "r" );
$Image->save(fread($fp, filesize($userfile ) ) );
fclose($fp );
OCICommit($conn );

OCIFreeStatement($stmt );

} else {
?>
    <form method="post" action=" <?php echo $PHP_SELF; ?>" enctype="multipart/form-data">
    File Description:<br>
    <input type="text" name="description"  size="40">
    <INPUT TYPE="hidden" name="MAX_FILE_SIZE" value="1000000">
    <br>File to upload/store in database:<br>
    <input type="file" name="userfile"  size="40">
    <p><input type="submit" name="submit" value="submit">
    </form>

<?php
}
?>
</BODY>
</HTML>
//display.php
<?php
/*
  Purpose:
    Display an image from 'Picture' table
*/
dl("php_oci8.dll");
$conn = OCILogon("scott","tiger");
$stmt = OCIParse($conn, "select Image, ImgType from Picture where picid=23" );
OCIExecute($stmt);

@OCIFetchInto($stmt, &$result, OCI_ASSOC);
Header("Content-type: image/".$result['IMGTYPE']);
echo $result['IMAGE']->load();

OCILogoff($conn );
?>   
 本文Tagsoracle  
 收藏本文  打印本文  论坛讨论  关闭窗口
· 上一篇:使用php作linux自动执行脚本(呵呵,超级好用的功能)
· 下一篇:给你一个JS实现列表连动的例子
· 上传图片时生成缩微图象的函数
· 在PHP3中实现SESSION的功能(附、COOKIE函数库的使用:test_cookie.php3)
· mysql让存储结果分页,用于复杂查询
· 在oracle中限制返回结果集的大小,类似于mysql的limit(转译)
· 怎样才能限制SQL Server只能让指定的机器连接(转)


关于本站 | 联系我们 | 业务合作 | 客户案例 | 诚聘英才 | 广告合作 | 收藏本站
海口动网先锋网络科技有限公司版权所有
Copyright © 2000 - 2006 Cndw.Com
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077