Longhorn PHP 2025 - Call For Papers

Voting

: seven plus one?
(Example: nine)

The Note You're Voting On

rcracer91 at gmail dot com
15 years ago
I wondered why it wasn't already written, so I did because I think working with associative arrays is always as comfortable as can be

<?php
function dba_fetch_assoc($handle) {
$assoc = array();
for(
$k = dba_firstkey($handle); $k != false; $k = dba_nextkey($handle)) {
$assoc[$k] = dba_fetch($k, $handle);
}
return
$assoc;
}
?>

<< Back to user notes page

To Top