php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #19606 chdir has broken ~
Submitted: 2002-09-25 18:23 UTC Modified: 2002-09-25 18:29 UTC
From: chandleg at wizardsworks dot org Assigned:
Status: Not a bug Package: Directory function related
PHP Version: 4.2.1 OS: Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: chandleg at wizardsworks dot org
New email:
PHP Version: OS:

 

 [2002-09-25 18:23 UTC] chandleg at wizardsworks dot org
chdir("/");
chdir("~user/");
$dirname = getcwd();
echo $dirname;

/

chdir("/");
chdir("/home/user");
$dirname = getcwd();
echo $dirname;

/home/user/

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-09-25 18:29 UTC] iliaa@php.net
Thank you for taking the time to write to us, but this is not
a bug. Please double-check the documentation available at
http://www.php.net/manual/ and the instructions on how to report
a bug at http://bugs.php.net/how-to-report.php

The ability to resolve the '~' is a feature of your shell, it is not supported by PHP nor any other programing language to my knowledge.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat Dec 21 15:01:29 2024 UTC