ID: 12092
Updated by: joey
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Closed
Bug Type: Any
Operating System: GNU/Linux
PHP Version: 4.0.4pl1
New Comment:
Try upgrading your PHP. I get your "expected behavior"
from 4.0.7-dev.
Previous Comments:
------------------------------------------------------------------------
[2001-07-12 06:15:38] [EMAIL PROTECTED]
<?
$info = pathinfo("/foo/bar");
echo ($info["dirname"]."<br>\n");
echo ($info["basename"]."<br>\n");
echo ($info["extension"]."<br>\n");
?>
This should print:
/foo<br>
bar<br>
<br>
but will not return.
<?
$info = pathinfo("/foo/bar.baz");
echo ($info["dirname"]."<br>\n");
echo ($info["basename"]."<br>\n");
echo ($info["extension"]."<br>\n");
?>
prints<?
$info = pathinfo("/foo/bar.");
echo ($info["dirname"]."<br>\n");
echo ($info["basename"]."<br>\n");
echo ($info["extension"]."<br>\n");
?>
/foo<br>
bar.baz<br>
baz<br>
as expected and
<?
$info = pathinfo("/foo/bar.");
echo ($info["dirname"]."<br>\n");
echo ($info["basename"]."<br>\n");
echo ($info["extension"]."<br>\n");
?>
prints
/foo<br>
bar.<br>
<br>
as expected, it's only the case where there is no trailing . that pathinfo fails to
work.
The configure line is:
'./configure' '--with-config-file-path=/www/conf' '--enable-track-vars'
'--with-apxs=/usr/apache/bin/apxs' '--with-oci8' '--enable-ftp' '--with-mysql'
'--with-pgsql' '--enable-xml' '--enable-inline-optimization' '--disable-debug'
'--with-zlib' '--enable-shared' '--with-gnu-ld' '--with-mcrypt'
------------------------------------------------------------------------
ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=12092&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]