Date: 04/24/98
- Next message: Peter Baumann: "Re: [PHP-DEV] Bug #306: Apache patch with PHP3- and FrontPage-Module"
- Previous message: a.vanerven <email protected>: "[PHP-DEV] Bug #308: Small error when linking with MySQL & Apache"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: sgk <email protected>
Operating system:
PHP version: 3.0 Latest CVS
PHP Bug Type: dbm related
Bug description:
When store and retrieve a string between a DBM database file,
backslashes will be treated as escaping. Is this correct behavior?
% cat x.php3
<?
$key = "key";
$value = "\\a\\b";
$dbm = dbmopen("/tmp/php3test.db", "n");
echo "original = $value\n";
dbminsert($dbm, $key, $value);
$value = dbmfetch($dbm, $key);
echo "result = $value\n";
dbmclose($dbm);
?>
% ./php -q x.php3
original = \a\b
result = ab
- Next message: Peter Baumann: "Re: [PHP-DEV] Bug #306: Apache patch with PHP3- and FrontPage-Module"
- Previous message: a.vanerven <email protected>: "[PHP-DEV] Bug #308: Small error when linking with MySQL & Apache"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

