php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #77067 Inserting a BLOB from a stream transforms it to a string
Submitted: 2018-10-26 14:14 UTC Modified: 2020-02-24 07:50 UTC
From: php at bohwaz dot net Assigned:
Status: Open Package: PDO related
PHP Version: 7.3.0RC4 OS: All
Private report: No CVE-ID: None
View Add Comment Developer Edit
Welcome! If you don't have a Git account, you can't do anything here.
You can add a comment by following this link or if you reported this bug, you can edit this bug over here.
(description)
Block user comment
Status: Assign to:
Package:
Bug Type:
Summary:
From: php at bohwaz dot net
New email:
PHP Version: OS:

 

 [2018-10-26 14:14 UTC] php at bohwaz dot net
Description:
------------
If passing a stream as a parameter of PDOStatement::bindParam it is transformed to a string which contains the stream contents.

For example this prevents reusing the stream handle to close it properly or to truncate or change the file contents.

Test script:
---------------
<?php

$pdo = new PDO('sqlite::memory:');
$pdo->exec('CREATE TABLE test (a INTEGER, b BLOB);');

$fp = tmpfile();
fwrite($fp, 'Random stuff!');
fseek($fp, 0);

$stmt = $pdo->prepare('INSERT INTO test VALUES (?, ?);');
$stmt->bindValue(1, 42);
$stmt->bindParam(2, $fp, PDO::PARAM_LOB);

$stmt->execute();

var_dump(gettype($fp));

Expected result:
----------------
resource

Actual result:
--------------
string

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2018-12-05 10:57 UTC] sjon at hortensius dot net
FWIW this isn't necessarily 7.3 specific - it has been like this ever since php 7.0, see https://3v4l.org/tg2Gl
 [2020-02-24 07:50 UTC] cmb@php.net
-Package: PDO SQLite +Package: PDO related
 [2020-02-24 07:50 UTC] cmb@php.net
The same happens with PDO_MySQL if emulated prepares are disabled.
PDO_ODBC may convert non-string parameters to string.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Mar 19 10:01:30 2024 UTC