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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.