0
codeigniterでExcelをダウンロードしています。それは働いていますが、Excelセルに画像を添付すると、codeigniterを使用してExcelから画像を読み取ることができません。Excelに画像ファイルがあります。
$sheetData = $objPHPExcel - > getActiveSheet(); foreach($sheetData - > getDrawingCollection() as $drawing) {
$string = $drawing - > getCoordinates();
$coordinate = PHPExcel_Cell::coordinateFromString($string);
if ($drawing instanceof PHPExcel_Worksheet_Drawing) {
echo $filename = $drawing - > getPath();
$drawing - > getDescription();
copy($filename, 'http://localhost/fps-update/assets/images/upload_product/'.$datass.
'.jpg');
}
}
しかし、私はとエラーを取得しています:
コピー(http://localhost/fps-update/assets/images/upload_product/product_0051.jpg): は、ストリームをオープンに失敗しました:HTTPラッパーは、書き込み可能な 接続
をサポートしていません。私を助けてください。
を。ご回答いただきありがとうございます。試してみます。 – Ramya