|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2006-05-17 14:02 UTC] mike@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 17:00:01 2025 UTC |
Description: ------------ PHP prints the following message: ?Notice: Unknown: \xac\x13\xb7(null) in Unknown on line 0? if * the script is running via apache2handler * and the dba handler is db4 * and the dba file does not yet exists The problem will not occur if another dba handler is used, or the script is executed via PHP's cli. Reproduce code: --------------- <?php $dba = dba_open('db4.db', 'c', 'db4'); dba_insert('question', 'bug or feature?', $dba); dba_insert('answer', '42', $dba); printf("%s\n", dba_fetch('question', $dba)); ?> Expected result: ---------------- bug or feature? Actual result: -------------- bug or feature? Notice: Unknown: \xac\x13\xb7(null) in Unknown on line 0