|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-07-17 01:27 UTC] jani@php.net
[2008-07-25 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 17:00:01 2025 UTC |
Description: ------------ I have a big DBF file (version 3) to open, with 152Mb and 611224 lines. When I use dbase_open command, I receive a Warning, and don?t have access to file. I have 7 cols: PROCESSO - STRING R - STRING DATA - DATE HORA - STRING ORIGEM - STRING DESTINO - STRING OBS - STRING Reproduce code: --------------- $db = dbase_open('temp/anda.dbf', 0); if ($db) { $column_info = dbase_get_header_info($db); foreach($column_info as $cols){ echo $cols["name"]."<br>"; } } Expected result: ---------------- name_col1 name_col2 name_col3 .... name_coln Actual result: -------------- warning dbase_open() [function.dbase-open]: unable to open database temp/anda.dbf in E:\Inetpub\wwwroot\areaspublicas\importdbf.php on line 24