From 44e7b5f577460339a1d560fc9f17cafa8a8e6436 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Wed, 9 Jun 2004 06:22:18 +0000 Subject: [PATCH] pass-by-reference was deprecated, so remove it and close bug #28707 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@160871 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/oci8/functions/oci-new-cursor.xml | 4 ++-- reference/oci8/functions/ocinewcursor.xml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/reference/oci8/functions/oci-new-cursor.xml b/reference/oci8/functions/oci-new-cursor.xml index 6421300348..075eae6d8e 100644 --- a/reference/oci8/functions/oci-new-cursor.xml +++ b/reference/oci8/functions/oci-new-cursor.xml @@ -1,5 +1,5 @@ - + oci_new_cursor @@ -27,7 +27,7 @@ $conn = oci_connect("scott", "tiger"); $curs = oci_new_cursor($conn); $stmt = oci_parse($conn, "begin info.output(:data); end;"); -oci_bind_by_name($stmt, "data", &$curs, -1, OCI_B_CURSOR); +oci_bind_by_name($stmt, "data", $curs, -1, OCI_B_CURSOR); oci_execute($stmt); oci_execute($curs); diff --git a/reference/oci8/functions/ocinewcursor.xml b/reference/oci8/functions/ocinewcursor.xml index b7e79cebc4..266d456228 100644 --- a/reference/oci8/functions/ocinewcursor.xml +++ b/reference/oci8/functions/ocinewcursor.xml @@ -1,5 +1,5 @@ - +