Voting

: seven plus zero?
(Example: nine)

The Note You're Voting On

oracle dot shinoda at gmail dot com
20 years ago
If you're wanting to use objects for your results, but are put off because you can't seem to apply a function to each field of the result (like stripslashes for example), try this code:

<?php
// Code to connect, do query etc etc...

$row = pg_fetch_object($result);
$vars = get_object_vars($row);
foreach (
$vars as $key => $var )
{
$row->{$key} = stripslashes($var);
}

?>

<< Back to user notes page

To Top