I've been having difficulty with how to declare this override method:
Code: Select all
<?php
class MyErrorCheckingSqliStmt extends mysqli_stmt
{
public function bind_result([a])
{
//My standardized error checking omitted
$bool = parent::bind_result([b]);
return $bool;
}
}
?>