Skip to content

Commit 0dd36fd

Browse files
author
SVN Migration
committed
This commit was manufactured by cvs2svn to create branch 'PHP_4_3'.
1 parent d07f529 commit 0dd36fd

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
--TEST--
2+
Bug #21182 (range modifies arguments)
3+
--FILE--
4+
<?php
5+
$a = "20"; $b = "30";
6+
echo "a1: $a\n";
7+
$result = range($a, $b);
8+
echo "a2: $a : type : " . gettype($a) . "\n";
9+
?>
10+
--EXPECT--
11+
a1: 20
12+
a2: 20 : type : string

0 commit comments

Comments
 (0)