ID:               31327
 User updated by:  vtsuper1 at mail dot hongkong dot com
 Reported By:      vtsuper1 at mail dot hongkong dot com
-Status:           No Feedback
+Status:           Open
 Bug Type:         COM related
 Operating System: windowXP
-PHP Version:      5.0.3
+PHP Version:      5.0.4
 New Comment:

I'm sorry, becuase I haven'r report to this bug for a long time. I have
try the same code in php 5.0.4, but it having the same problem. In
honest I don't know what is CVS....so...I don;t know what can I do


Previous Comments:
------------------------------------------------------------------------

[2005-03-08 01:00:21] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------

[2005-02-28 21:06:01] [EMAIL PROTECTED]

Please try using this CVS snapshot:

  http://snaps.php.net/php5-latest.tar.gz
 
For Windows:
 
  http://snaps.php.net/win32/php5-win32-latest.zip



------------------------------------------------------------------------

[2004-12-28 20:46:49] vtsuper1 at mail dot hongkong dot com

Description:
------------
I have try this code in 
php 5.0.3 and 4.3
I'm using Chinese winXP and Chinese Office XP
apache 2

both version of php also have the same problem
When I use Chinese character in the string, the output of the word file
will have some meaningless spaces after the words I expected(my expected
string is ok, no problem).  There are no problem if I using English. And
this problem will not occurs in excel.

Reproduce code:
---------------
<?php
// starting word
$word = new COM("word.application") or die("Unable to instantiate
Word");
echo "Loaded Word, version {$word->Version}\n";

//bring it to front
$word->Visible = 1;

//open an empty document
$word->Documents->Add();

//do some weird stuff
$word->Selection->TypeText("§A¦n¶Ü");
$word->Documents[1]->SaveAs("Useless test.doc");

//closing word
$word->Quit();

//free the object
$word = null;
?> 

Expected result:
----------------
§A¦n¶Ü

Actual result:
--------------
§A¦n¶Ü____

(there are some spaces occurs, I use the underline to repersent the
spaces)


------------------------------------------------------------------------


-- 
Edit this bug report at http://bugs.php.net/?id=31327&edit=1

Reply via email to