summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/064.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/mysqli/tests/064.phpt')
-rw-r--r--ext/mysqli/tests/064.phpt21
1 files changed, 0 insertions, 21 deletions
diff --git a/ext/mysqli/tests/064.phpt b/ext/mysqli/tests/064.phpt
deleted file mode 100644
index e6df1e4505..0000000000
--- a/ext/mysqli/tests/064.phpt
+++ /dev/null
@@ -1,21 +0,0 @@
---TEST--
-NULL binding
---SKIPIF--
-<?php require_once('skipif.inc'); ?>
---FILE--
-<?php
- include "connect.inc";
-
- $mysql = new mysqli($host, $user, $passwd);
-
- $stmt = new mysqli_stmt($mysql, "SELECT NULL FROM DUAL");
- $stmt->execute();
- $stmt->bind_result($foo);
- $stmt->fetch();
- $stmt->close();
- $mysql->close();
-
- var_dump($foo);
-?>
---EXPECT--
-NULL