php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #71542 disk_total_space does not work with relative paths
Submitted: 2016-02-07 12:54 UTC Modified: 2021-08-16 12:47 UTC
Votes:1
Avg. Score:3.0 ± 0.0
Reproduced:0 of 0 (0.0%)
From: tonybogdanov at gmail dot com Assigned: cmb (profile)
Status: Closed Package: Directory function related
PHP Version: 7.3 ZTS OS: *
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: tonybogdanov at gmail dot com
New email:
PHP Version: OS:

 

 [2016-02-07 12:54 UTC] tonybogdanov at gmail dot com
Description:
------------
When run on Windows (WAMP) with Apache (using PHP alone in a console is fine), the function disk_total_space() throws Warning: disk_total_space(): The system cannot find the path specified. if a relative path is supplied.

Test script:
---------------
<?php
echo getcwd() . DIRECTORY_SEPARATOR . 'test' . PHP_EOL;
echo realpath('test') . PHP_EOL;

echo disk_total_space(getcwd() . DIRECTORY_SEPARATOR . 'test') . PHP_EOL;
echo disk_total_space(realpath('test')) . PHP_EOL;
echo disk_total_space('test') . PHP_EOL; // fails


Patches

Pull Requests

Pull requests:

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2020-03-31 13:57 UTC] cmb@php.net
-Status: Open +Status: Feedback -Assigned To: +Assigned To: cmb
 [2020-03-31 13:57 UTC] cmb@php.net
Does that still happen to you with any of the actively supported
PHP versions[1]?

[1] <php.net/supported-versions.php>
 [2020-04-01 08:22 UTC] tonybogdanov at gmail dot com
I can't test this as I don't use Windows anymore, but it's been 4 years, I don't think anybody really cares anymore.
 [2020-04-01 11:27 UTC] cmb@php.net
-Status: Feedback +Status: Verified -Package: Apache2 related +Package: Directory function related -Assigned To: cmb +Assigned To:
 [2020-04-01 11:27 UTC] cmb@php.net
Thanks for the feedback. :)

I had a closer look, and this issue is not Windows specific, but
rather related to thread-safe (ZTS) builds on any OS.  The problem
is that disk_total_space() and disk_free_space() ignore the VCWD.
 [2020-04-01 11:28 UTC] cmb@php.net
-Operating System: Windows 10 x64 +Operating System: * -PHP Version: 5.6.18 +PHP Version: 7.3 ZTS
 [2021-08-16 12:47 UTC] cmb@php.net
-Assigned To: +Assigned To: cmb
 [2021-08-16 12:47 UTC] cmb@php.net
The following pull request has been associated:

Patch Name: Fix #71542: disk_total_space does not work with relative paths
On GitHub:  https://github.com/php/php-src/pull/7377
Patch:      https://github.com/php/php-src/pull/7377.patch
 [2021-08-17 09:33 UTC] git@php.net
Automatic comment on behalf of cmb69
Revision: https://github.com/php/php-src/commit/f924e972695aa153cc141fd394d52fb364dc6034
Log: Fix #71542: disk_total_space does not work with relative paths
 [2021-08-17 09:33 UTC] git@php.net
-Status: Verified +Status: Closed
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Nov 21 10:01:29 2024 UTC