summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/059.phpt
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2010-07-07 12:09:36 +0000
committerAndrey Hristov <andrey@php.net>2010-07-07 12:09:36 +0000
commitb580bc38758f7c0da42a8ae153656b9880ec7592 (patch)
tree3b6fce7d28e054626809e52166d4f5046e3fae2a /ext/mysqli/tests/059.phpt
parent25d6aee4fb950179fa1585a6f852fcddf94ee6d6 (diff)
downloadphp-git-b580bc38758f7c0da42a8ae153656b9880ec7592.tar.gz
Cleanup in trunk. Remove some functions, noted in
UPGRADING. sed-ed the tests to change the usage to the real function name.
Diffstat (limited to 'ext/mysqli/tests/059.phpt')
-rw-r--r--ext/mysqli/tests/059.phpt10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/mysqli/tests/059.phpt b/ext/mysqli/tests/059.phpt
index 733a3cefba..e4b6a0b9fe 100644
--- a/ext/mysqli/tests/059.phpt
+++ b/ext/mysqli/tests/059.phpt
@@ -21,20 +21,20 @@ require_once('skipifconnectfailure.inc');
$stmt = mysqli_prepare($link, "INSERT INTO mbind VALUES (?||?)");
- mysqli_bind_param($stmt, "ss", $a, $b);
+ mysqli_stmt_bind_param($stmt, "ss", $a, $b);
$a = "foo";
$b = "bar";
- mysqli_execute($stmt);
+ mysqli_stmt_execute($stmt);
mysqli_stmt_close($stmt);
$stmt = mysqli_prepare($link, "SELECT * FROM mbind");
- mysqli_execute($stmt);
+ mysqli_stmt_execute($stmt);
- mysqli_bind_result($stmt, $e);
- mysqli_fetch($stmt);
+ mysqli_stmt_bind_result($stmt, $e);
+ mysqli_stmt_fetch($stmt);
var_dump($e);