我需要在CKeditor中顯示doc文件的內容。 我看了doc文件&的傳遞到一個數組中一行一行的內容:現在&出現在我的網頁如何在CKeditor中顯示數組內容?
include_once("ckeditor/ckeditor.php");
$CKeditor = new CKeditor();
$CKeditor->basePath = '/ckeditor/';
foreach ($this->data as $value) {
//what should I write here
}
$CKeditor->editor('editor1');
的CKEDITOR工作:
$rs = fopen("text.doc", "r");
while ($line = fgets($rs, 1024)) {
$this->data[] = $line . "<BR>";
}
然後創建CKEDITOR的一個實例..但沒有任何內容? 我應該在foreach中傳遞數組內容到編輯器中嗎? 請幫助=(
也檢查出這個答案:http://stackoverflow.com/a/10646694/443219 –
問題不是doc文件問題是如何傳遞數組 –
你似乎不明白。 PHP本身不能讀取.doc文件。這不是一個簡單的文本文件。 '傳遞數組'是這裏最少的問題。 –