|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2021-12-01 10:50 UTC] cmb@php.net
-Status: Open
+Status: Verified
-Type: Bug
+Type: Documentation Problem
[2021-12-01 10:50 UTC] cmb@php.net
[2022-11-28 03:36 UTC] ramaha256 at gmail dot com
[2022-12-23 10:02 UTC] janettabloomquist at gmail dot com
[2023-04-26 15:31 UTC] mysanfordchart dot me at gmail dot com
[2023-05-03 02:27 UTC] kevin120 at aol dot com
[2023-05-29 08:24 UTC] myfordbenefits dot one at gmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 07:00:01 2025 UTC |
Description: ------------ Realpath function is using realpath_cache. This is not documented anywhere. Test script: --------------- <?php exec("ln -nsf test1 test"); echo realpath("test") . "\n"; exec("ln -nsf test2 test"); echo realpath("test") . "\n"; Expected result: ---------------- /home/****/realpath/test1 /home/****/realpath/test2 Actual result: -------------- /home/****/realpath/test1 /home/****/realpath/test1