Maison  >  Article  >  développement back-end  >  dbase_open打开dbf文件,只有2行代码

dbase_open打开dbf文件,只有2行代码

WBOY
WBOYoriginal
2016-06-13 13:06:311146parcourir

求助:dbase_open打开dbf文件,只有2行代码~
注:extension=php_dbase.dll 已经默认开启

代码如下:

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<?php $file_dbf = 'test.dbf';
$db = dbase_open($file_dbf,0);
?>



出现错误提示:
Warning: dbase_open() [function.dbase-open]: unable to open database test.dbf in F:\web\AppServ\www\test\dbf.php on line 3

我试了很多路径都出现同样的警告:(路径是正确的)
$file_dbf = 'test.dbf';
$file_dbf = '/test.dbf';
$file_dbf = ./test.dbf';
$file_dbf = 'http://localhost/test/test.dbf';
$file_dbf = 'F:\web\AppServ\www\test\test.dbf';
$file_dbf = 'F:/web/AppServ/www/test/test.dbf';

请问这是什么原因?应该如何解决?谢谢~

------解决方案--------------------
用 ODBC

VFP(.dbc, .dbf) 
标准连接: 
"Provider=vfpoledb;Data Source=C:\DatabasePath\MyDatabase.dbc; " 
或 
"Provider=VFPOLEDB.1;Data Source=d:\temp;Password= " ";Collating Sequence=MACHINE " 
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent: CI 往 index.php Article suivant: 再谈PHP中的str_repeat函数兑现