<?php // 作成日 2008/10/01 require_once("Spreadsheet/Excel/Writer.php"); $workbook = new Spreadsheet_Excel_Writer('./sheet/sample26-1.xls'); $worksheet =& $workbook->addWorksheet('シート1'); $format =& $workbook->addFormat(); $format->setTextWrap(); $worksheet->writeString(0, 1, '東京都千代田区神田神保町'); $worksheet->writeString(1, 1, '東京都千代田区神田神保町', $format); $workbook->close(); print('<html>'); print('<head>'); print('<meta http-equiv="Content-Type" content="text/html;charset=Shift_JIS" />'); print('</head>'); print('<body>'); print('<p><a href="./sheet/sample26-1.xls">Excelファイル</a></p>'); print('</body></html>'); ?>