diff options
Diffstat (limited to 'ext/oci8/tests/fetch_all2.phpt')
-rw-r--r-- | ext/oci8/tests/fetch_all2.phpt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/oci8/tests/fetch_all2.phpt b/ext/oci8/tests/fetch_all2.phpt index ca43348c2b..cafd0eb509 100644 --- a/ext/oci8/tests/fetch_all2.phpt +++ b/ext/oci8/tests/fetch_all2.phpt @@ -3,13 +3,13 @@ oci_fetch_all() - 2 --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) VALUES (1,1)"; @@ -49,7 +49,7 @@ oci_execute($s); var_dump(oci_fetch_all($s, $all, 0, 1, OCI_BOTH)); var_dump($all); -require dirname(__FILE__).'/drop_table.inc'; +require __DIR__.'/drop_table.inc'; echo "Done\n"; ?> |