summaryrefslogtreecommitdiff
path: root/ext/oci8/tests/fetch_into1.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/oci8/tests/fetch_into1.phpt')
-rw-r--r--ext/oci8/tests/fetch_into1.phpt8
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/oci8/tests/fetch_into1.phpt b/ext/oci8/tests/fetch_into1.phpt
index 68e5f9cfae..97e511869e 100644
--- a/ext/oci8/tests/fetch_into1.phpt
+++ b/ext/oci8/tests/fetch_into1.phpt
@@ -3,13 +3,13 @@ various ocifetchinto() tests
--SKIPIF--
<?php
$target_dbs = array('oracledb' => true, 'timesten' => false); // test runs on these DBs
-require(dirname(__FILE__).'/skipif.inc');
+require(__DIR__.'/skipif.inc');
?>
--FILE--
<?php
-require dirname(__FILE__)."/connect.inc";
-require dirname(__FILE__).'/create_table.inc';
+require __DIR__."/connect.inc";
+require __DIR__.'/create_table.inc';
$insert_sql = "INSERT INTO ".$schema."".$table_name." (id, value, string) VALUES (1, 1, NULL)";
@@ -57,7 +57,7 @@ var_dump($all);
var_dump(ocifetchinto($s, $all, OCI_NUM+OCI_RETURN_NULLS+OCI_RETURN_LOBS));
var_dump($all);
-require dirname(__FILE__).'/drop_table.inc';
+require __DIR__.'/drop_table.inc';
echo "Done\n";
?>