php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Request #54122 symlink should create backslashs
Submitted: 2011-02-28 18:01 UTC Modified: -
Votes:1
Avg. Score:5.0 ± 0.0
Reproduced:1 of 1 (100.0%)
Same Version:1 (100.0%)
Same OS:1 (100.0%)
From: carsten_sttgt at gmx dot de Assigned:
Status: Open Package: Filesystem function related
PHP Version: Irrelevant OS: Windows
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
40 - 20 = ?
Subscribe to this entry?

 
 [2011-02-28 18:01 UTC] carsten_sttgt at gmx dot de
Description:
------------
Most people are using forward slashs, even on Windows. But there is a problem with symlink().

As you can see in the example, the symlink is created as given in the code. Of course, many programs can't work with slashs, e.g. cmd.exe internal functions. The symlink data it read by programs "as is", in this case "./foo.php". And a "/" is not working in cmd.exe (or other programs).

Thus it would be nice, if symlink() on Windows is changing "/" itself to "\".



Test script:
---------------
In the shell:
php -r "symlink('./foo.php', 'bar.php');"
dir bar.php
type bar.php


Expected result:
----------------
28.02.2011  17:49    <SYMLINK>      bar.php [.\test.php]
Content of test.php

Actual result:
--------------
28.02.2011  17:49    <SYMLINK>      bar.php [./test.php]
File not found.


Patches

Add a Patch

Pull Requests

Add a Pull Request

 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 08:01:28 2024 UTC