php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13599 drops characters in variable file name
Submitted: 2001-10-08 12:04 UTC Modified: 2001-10-17 09:11 UTC
From: alain at sonic dot net Assigned:
Status: Closed Package: COM related
PHP Version: 4.0CVS-2001-10-08 OS: win98
Private report: No CVE-ID: None
 [2001-10-08 12:04 UTC] alain at sonic dot net
<?php
	#Instantiate Excel
                 $ex = new COM("Excel.sheet") or Die ("Did not instantiate Excel");
	$ex->Application->Visible = 1; #Make Excel visible. 
	$workbook="test.xls";
	$pathin="c:/";
	$sheet="sheet1";	 
 	#Load the workbook
 	$filename= $pathin.$workbook;
 	print $filename;
               	# $file=New Variant($filename,VT_BSTR); #This doesn't work either (replacing $filename by $file)
                	$wkb = $ex->application->Workbooks->Open($filename) or 
                	Die ("Did not open $filename");
	#Activate the sheet
$sheets = $wkb->Worksheets($sheet) or Die ("Unable to activate $sheet");
               		
 ?>
 Produces error message:
 c:/test.xls
Warning: Invoke() failed: Exception occurred. Source: Microsoft Excel Description: 'c:/tes.xls' could not be found. Check the spelling of the file name, and verify that the file location is correct. If you are trying to open the file from your list of most recently used files on the File menu, make sure that the file has not been renamed, moved, or deleted. in c:\geolink\testbad.php on line 12
Did not open c:/test.xls
Note: If $workbook="testxx.xls" it will open test.xls ...
But will produce the error below on the 'activate the sheet' code line, (related or not to the file name error, maybe a second bug?)
Error in php_OLECHAR_to_char() in c:\geolink\testbad.php on line 15 

Setup: win 98 Apache 1.3x as CGI. CVS source compiled at php4win.com on 10-04-2001

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-10-11 03:31 UTC] phanto@php.net
these are the implications of an attempt to make the string functions binary safe :) will be fixed soon.
 [2001-10-17 09:11 UTC] phanto@php.net
fixed in cvs now
 [2004-03-31 14:31 UTC] ge_nildo at uol dot com dot br
I had the some problem. What can I do to fix this problem?

 Thanks,
     Genildo
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 05:01:29 2024 UTC