0

私はプロジェクトに取り組んでおり、各 mysql レコードを個々のワード ファイルにエクスポートする必要がありますが、その方法がわかりません。Wordファイルのエクスポートデータについて話している記事がネット上にたくさんありますが、各レコードを個々のWordファイルにエクスポートする必要があります。使用したコードは次のとおりですが、出力はすべてのレコードを含むWordファイルです各レコードを個々の Microsoft Office ファイルに保存する必要があります。以下のコードは PHPexcel クラスを使用して Excel ファイルを読み取り、それを Mysql にインポートします。mysql の各レコードを個々の Microsoft Word ファイルに保存したいと考えています。回答ありがとうございます。

<?php
require_once 'Classes/PHPExcel.php';
$objReader = new PHPExcel_Reader_Excel2007();
$objPHPExcel = $objReader->load('book1.xlsx');
$rowIterator = $objPHPExcel->getActiveSheet()->getRowIterator();

$skip_rows = 0;
$excell_array_data = array();
foreach($rowIterator as $row){
    $cellIterator = $row->getCellIterator();
    $cellIterator->setIterateOnlyExistingCells(false);
    if($skip_rows >= $row->getRowIndex ()) continue;
    $rowIndex = $row->getRowIndex ();
    $excell_array_data[$rowIndex] = array();

    foreach ($cellIterator as $cell) {
        $excell_array_data[$rowIndex][$cell->getColumn()] = $cell->getCalculatedValue();
    }
}

$link = @mysql_connect('localhost', 'root', '');
if ($link){
    $db_selected = mysql_select_db('proje', $link);
    @mysql_set_charset('utf8',$link);

    //Create Database table with one Field
    $sql = "CREATE TABLE xlsx (
    rowID INT NOT NULL ,
    PRIMARY KEY (rowID)
    )";
    mysql_query($sql);

    //Create Others Field (A, B, C & ...)
    $columns_name = array();
    $columns_name = $excell_array_data[$skip_rows+1];
    foreach (array_keys($columns_name) as $fieldname ){
        $sql = "ALTER TABLE xlsx ADD $fieldname VARCHAR(1000)";
        mysql_query($sql);
    }
 $i = 0;
    //Insert Excel data to MySQL
    foreach( $excell_array_data as $k=>$v){
    //echo $keys."\n<br/>";
    //var_dump ($v);

        $keys = join(array_keys($v), ',');
        $values = join($v, "','");

/*      
ini_set("com.allow_dcom","true");
// Create new COM object – word.application
$word = new COM("word.application");

// Hide MS Word application window
$word->Visible = 0;

//Create new document
$word->Documents->Add();

// Define page margins 
$word->Selection->PageSetup->LeftMargin = '2';
$word->Selection->PageSetup->RightMargin = '2';

// Define font settings
$word->Selection->Font->Name = 'Arial';
$word->Selection->Font->Size = 10;

// Add text
$word->Selection->TypeText("word");
$word->Selection->TypeText("$v[B]");
$word->Selection->TypeText("$v[C]");
$word->Selection->TypeText("$v[D]");
$word->Selection->TypeText("$v[E]");
$word->Selection->TypeText("$v[F]");

// Save document
$filename = tempnam(__FILE__, "word");
$word->Documents[1]->SaveAs($filename);

// Close and quit
$word->quit();
unset($word);

$i++;       


 */     
 header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment; Filename=SaveAsWordDoc.doc");
        $sql = "insert into xlsx (rowID, $keys) values ($k, '$values') " ;
        mysql_query($sql);
        ?>

        <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=Windows-1252\">
<title>Saves as a Word Doc</title>
</head>
<body>
<h1><?php echo $k; ?></h1>
  <?php 
 var_dump($v) ;

   ?>


<?php
    }

} else {
    echo "Error in database connection.";
}
?>
4

1 に答える 1