Mysql
 sql >> Database >  >> RDS >> Mysql

contenuto del file binario mostrato in php print_r ma non salvato in mysql

RTM ;-)

Quindi non l'ho mai fatto da solo, ma suppongo che debba essere simile a questo in base al tuo codice e al esempio nella pagina del documento delle funzioni :

    $filepath = ini_get('upload_tmp_dir')."/".basename($_FILES['file'.$i]['tmp_name']);
    $filepath = addslashes($filepath);
    $handle = fopen($filepath, "rb");
    $content = null;

    $stmt = $mysqli->prepare("INSERT INTO attachment (filename,filecontent,mkey) VALUES (?,?,?)");
    $stmt->bind_param("sbi",$_FILES['file'.$i]['name'], $content, $mkey);

    while (!feof($handle)) {
        // $maxPacketSize would be the size of your max packet setting for mysql,
        // or something safely assumed to be below it
        $stmt->send_long_data(1, fread($handle, $maxPacketSize));
    }
    fclose($handle);
    $stmt->execute();