|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-04-28 22:18 UTC] jim
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 06:00:01 2025 UTC |
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