Edit report at https://bugs.php.net/bug.php?id=60712&edit=1
ID: 60712
User updated by: mbiama dot ekombitie dot com at live dot fr
Reported by: mbiama dot ekombitie dot com at live dot fr
Summary: PHP Server Central
-Status: Open
+Status: Assigned
Type: Bug
Package: Dynamic loading
Operating System: Gnu/linux php 5.3
PHP Version: 5.3.9
Block user comment: N
Private report: N
New Comment:
<?php
$arr = array("www.angosso.net" => "www.angosso.net/angosso/angosso.php", 12 =>
true);
echo $arr["www.angosso.net/deafault.aspx/."]; // bar
echo $arr[12]; // 1
Previous Comments:
------------------------------------------------------------------------
[2012-01-11 15:43:12] mbiama dot ekombitie dot com at live dot fr
Expected result:
----------------
<html>
<head>
<title>Angosso</title>
</head>
<body>
<?php echo '<p>http://www.angosso.net/angosso/angosso.aspx</p>'; ?>
</body>
</html>
------------------------------------------------------------------------
[2012-01-11 14:44:25] mbiama dot ekombitie dot com at live dot fr
Description:
------------
<html>
<head>
<title>Test PHP</title>
</head>
<body>
<?php echo '<p>Bonjour le monde</p>'; ?>
</body>
</html>
Test script:
---------------
<html>
<head>
<title>Angosso</title>
</head>
<body>
<?php echo '<p>http://www.;angosso.net/angosso/angosso.aspx</p>'; ?>
</body>
</html>
Expected result:
----------------
<html>
<head>
<title>Angosso</title>
</head>
<body>
<?php echo '<p>http://www.;angosso.net/angosso/angosso.aspx</p>'; ?>
</body>
</html>
Actual result:
--------------
<html>
<head>
<title>Angosso</title>
</head>
<body>
<?php echo '<p>http://www.;angosso.net/default.aspx</p>'; ?>
</body>
</html>
------------------------------------------------------------------------
--
Edit this bug report at https://bugs.php.net/bug.php?id=60712&edit=1