前提・実現したいこと
タイトルの通り、MySqlへのファイル保存が上手くいきません。
処理の流れは以下のように考えております。
C#からPHPへファイルデータを送る
→phpで受け取ったファイルデータをMySqlへ保存する
こちらのサイトによると、受け取ったファイルをバイナリデータへ変換すると上手く保存できると書かれていました。
実際書いてみると、$_FILES['userfile']や$_FILES['userfile']["tmp_name"]でファイルの情報を取得することはできたのですが、
file_get_contents()でバイナリデータへ変換しようとするとエラーになってしまいます。
どのように書けば正常に変換できるか教えていただきたいと思っております。
発生している問題・エラーメッセージ
<b>Fatal error</b>: Uncaught TypeError: file_get_contents(): Argument #1 ($filename) must be of type string, array given in C:\xampp\htdocs\strage\uploadfile.php:1 Stack trace: #0 C:\xampp\htdocs\strage\uploadfile.php(1): file_get_contents(Array) #1 {main} thrown in <b>C:\xampp\htdocs\strage\uploadfile.php</b> on line <b>1</b><br />
該当のソースコード
$raw_data = file_get_contents($_FILES['userfile']["tmp_name"]);
試したこと
upload.cs
var hc = new HttpClient(); var dic = new Dictionary<string, string>(); dic["FileName"] = "hogehoge.jpg"; var fileName = @"C:\hoge.jpg"; var fileContent = new StreamContent(File.OpenRead(fileName)); fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("attachment") { FileName = Path.GetFileName(fileName), Name = @"userfile[]" }; var content = new MultipartFormDataContent(); foreach (var param in dic) { content.Add(new StringContent(param.Value), param.Key); } content.Add(fileContent); var hc = new HttpClient(); var url = "http://localhost/uploadfile.php"; var req = await hc.PostAsync(url, content); var html = await req.Content.ReadAsStringAsync(); MessageBox.Show(html);
uploadfile.php
$raw_data = file_get_contents($_FILES['userfile']["tmp_name"]); //データベースへの接続 //MySOLホスト名 $host = 'localhost'; //データベース名 $dbname = 'strage'; //データベースユーザー名 $username = 'root'; //データベースパスワード $pssword = ''; //文字コード設定 $options = array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET CHARACTER SET 'utf8'"); // MySQLへの接続 $db = new PDO('mysql:host='.$host.'; dbname='.$dbname.'', $username, $pssword, $options); //データベースへの保存処理 $addsql = $db->prepare('INSERT INTO strage_data VALUES(:file)'); $addsql->bindParam(':file', $raw_data, PDO::PARAM_STR); $addsql->execute();
補足情報(FW/ツールのバージョンなど)
A5M2
Visual Studio code
VS Express 2017
XAMPP
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。