Parecería que hay un error en el trabajo aquí, la mejor solución que he encontrado es esta:
http://www.php.net/manual/en /pdo.prepared-statements.php#101993
Del comentario en el enlace de arriba:
$dbh->query("CALL SomeStoredProcedure($someInParameter1, $someInParameter2, @someOutParameter)"); $dbh->query("SELECT @someOutParameter"); // OR, if you want very much to use PDO.Prepare(), // insert "SELECT @someOutParameter" in your stored procedure and then use: $stmt = $dbh->prepare("CALL SomeStoredProcedure(?, ?)"); $stmt ->execute(array($someInParameter1, $someInParameter2));
Ver también esto:https://stackoverflow.com/a/4502524/815386