summaryrefslogtreecommitdiff
path: root/tests/php/phpt/variables/002-get_complex_array.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/phpt/variables/002-get_complex_array.phpt')
-rw-r--r--tests/php/phpt/variables/002-get_complex_array.phpt33
1 files changed, 0 insertions, 33 deletions
diff --git a/tests/php/phpt/variables/002-get_complex_array.phpt b/tests/php/phpt/variables/002-get_complex_array.phpt
deleted file mode 100644
index 716fda9..0000000
--- a/tests/php/phpt/variables/002-get_complex_array.phpt
+++ /dev/null
@@ -1,33 +0,0 @@
---TEST--
-get_complex_array
---SKIPIF--
-<?php if (!extension_loaded("extension_for_tests")) print "skip"; ?>
---FILEEOF--
-<?php
-
-/*
-function get_complex_array()
-{
- return array(
- "a" => 123,
- "b" => 456,
- "c" => array("nested value","example",7)
- );
-}
-var_export(get_complex_array());
-*/
-var_export(TestVariables\get_complex_array());
-
-
-echo PHP_EOL;
---EXPECT--
-array (
- 'a' => 123,
- 'b' => 456,
- 'c' =>
- array (
- 0 => 'nested value',
- 1 => 'example',
- 2 => 7,
- ),
-) \ No newline at end of file