search
HomeBackend DevelopmentPHP Tutorial输出的数组如何写入数据库?

输出的数组如何写入数据库?
2个值要写入2个字段. 
 Array ( [0] => upload/2015/09/06/20150906164734000.jpg [1] => upload/2015/09/06/20150906164734001.jpg


回复讨论(解决方案)

1、遍历数组,每次插入一个元素
2、连接成串后插入

怎么做是根据你的需要来的,并无一定之规
你是程序的主人,而不是程序的奴隶

foreach($arr as $v){    mysql_query("insert into tbname (image_url) values ('".$v."')");}

0 对应 第一个  1 对应第二个 要看你是怎么设计的....

foreach($arr as $v){    mysql_query("insert into tbname (image_url) values ('".$v."')");}



我说详细一点吧。因为新手,请版主多多指教。
upload.php页面
<?phpheader("Content-type: text/html; charset=utf-8");class upload {  public $upload_file = array();  public $upload_path = 'upload';  public $timetree = 1;  public $allow = array('jpg', 'gif', 'bmp', 'jpeg', 'png');  function __construct($path='') {    if(!isset($_FILES)) return $this->error(99);    if($path) $this->upload_path = $path;    if($_FILES && $this->timetree) {        $this->upload_path .= date('/Y/m/d');        if(! file_exists($this->upload_path)) mkdir($this->upload_path, 0666, true);    }    foreach($_FILES as $info) {        if(! is_array($info['name'])) {            $this->upload_callback($info);            continue;        }        for($i=0;$i<count($info['name']);$i++) {            $this->upload_callback(array(                'name' => $info['name'][$i],                'type' => $info['type'][$i],                'tmp_name' => $info['tmp_name'][$i],                'error' => $info['error'][$i],                'size' => $info['size'][$i],                ));        }    }  }   /**   * 上传处理回调方法   * 功能 保存上传文件   **/  function upload_callback($info) {    if($info['error']) return $this->error($info['error']);    if(!($ext = $this->extension($info['name']))) return;      $t= date('YmdHis');    $n = 0;      do {           $filename = sprintf('%s/%s%03d.%s', $this->upload_path, $t, $n++, $ext);    }while(file_exists($filename));      copy($info['tmp_name'], $filename);      $this->upload_file[] = $filename;  }  function extension($filename) {    $t = strtolower(pathinfo($filename, PATHINFO_EXTENSION));    if(in_array($t, $this->allow)) return $t;    $this->error("$t 非法的类型");    return '';  }  /**   * 错误处理   **/  function error($errno) {    $msg = '';      switch($errno) {          case UPLOAD_ERR_INI_SIZE:              $msg = '上传的文件超过了 '.ini_get('upload_max_filesize');              break;          case UPLOAD_ERR_FORM_SIZE:              $msg = '上传文件的大小超过了 HTML 表单中 MAX_FILE_SIZE 选项指定的值';              break;          case UPLOAD_ERR_PARTIAL:              $msg = '文件只有部分被上传';              break;        case UPLOAD_ERR_NO_FILE:            $msg = '没有文件被上传';            break;        case UPLOAD_ERR_NO_TMP_DIR:            $msg = '找不到临时文件夹';            break;        case UPLOAD_ERR_CANT_WRITE:            $msg = '文件写入失败';            break;          default:              $msg = '错误:'.$errno;              break;      }    echo "<script>alert('$msg');</script>";  }}$p = new upload;print_r($p->upload_file);?>



上传并返回的页面up.html 
<form id="upload_form" enctype="multipart/form-data" method="post" action="upload.php"><div class="upset">正面: <input id="img" name="img" type="file" accept="image/*" onChange="fileSelected()" ></div><div class="upset">背面: <input id="img2" name="img2" type="file" accept="image/*" onChange="fileSelected()" ></div><div><input type="button" value="上传" onClick="startUploading()" />	</div></form>下面这句是返回接收的<div id="upload_response"><div>显示就是这个内容:Array ( [0] => upload/2015/09/06/20150906164734000.jpg [1] => upload/2015/09/06/20150906164734001.jpg


我现在就是要把这两个值写入数据。分别写入IMG1,IMG 2两个字段

$sql = "insert into 表 (IMG1,IMG 2) values('$p->upload_file[0]', '$p->upload_file[1]')";

$sql = "insert into 表 (IMG1,IMG 2) values('$p->upload_file[0]', '$p->upload_file[1]')";

$sql = "insert into 表 (IMG1,IMG 2) values('$p->upload_file[0]', '$p->upload_file[1]')";



非常感谢!同时也谢谢其他几位版主。

先序列化为字符串,然后存进去,取出来之后再序列化,最方便的操作,还保留原结构。

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, ReactBuild a React App With a Laravel Back End: Part 2, ReactMar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Notifications in LaravelNotifications in LaravelMar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment