Jump to content

PDO Autobind Function Viability


imperium2335

Recommended Posts

Hi,

 

I got tired of typing out the same bindParam etc etc so I came up with the function below.

 

As long as you enter your variables into the array in the same order as your placeholders, it works well.

 

Please let me know your thoughts on how to make it better or perhaps there is a method out there that already exists which makes this function pointless!?

 

function autoBind($SQL, $varsArray, $mode = 'FETCH_ASSOC') {

include('dbconnect.php') ;

$result = $dbh->prepare($SQL) ;

$i = 1 ;
foreach($varsArray as $current) {

	if(is_numeric($current))
	{
		$result->bindValue($i, $current, PDO::PARAM_INT) ;
	}
	else // Must be string.
	{
		$result->bindValue($i, $current, PDO::PARAM_STR) ;

	}
	$i++ ;
}
$result->execute() ;

if($mode == 'FETCH_ASSOC')
{
	$output = $result->fetch(PDO::FETCH_ASSOC) ;
}
elseif($mode == 'FETCHCOLUMN')
{
	$output = $result->fetchColumn() ;
}

return $output ;

}

Link to comment
https://forums.phpfreaks.com/topic/259544-pdo-autobind-function-viability/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.