Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:34601 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 7318 invoked by uid 1010); 8 Jan 2008 10:19:29 -0000 Delivered-To: ezmlm-scan-internals@lists.php.net Delivered-To: ezmlm-internals@lists.php.net Received: (qmail 7302 invoked from network); 8 Jan 2008 10:19:29 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 8 Jan 2008 10:19:29 -0000 Authentication-Results: pb1.pair.com header.from=lists@chsc.dk; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=lists@chsc.dk; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain chsc.dk designates 80.160.174.174 as permitted sender) X-PHP-List-Original-Sender: lists@chsc.dk X-Host-Fingerprint: 80.160.174.174 zimbra.peytz.dk Linux 2.5 (sometimes 2.4) (4) Received: from [80.160.174.174] ([80.160.174.174:42964] helo=zimbra.peytz.dk) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id F0/57-38195-F2E43874 for ; Tue, 08 Jan 2008 05:19:28 -0500 Received: from localhost (localhost [127.0.0.1]) by zimbra.peytz.dk (Postfix) with ESMTP id 674BB32C686 for ; Tue, 8 Jan 2008 11:19:24 +0100 (CET) X-Virus-Scanned: amavisd-new at X-Spam-Flag: NO X-Spam-Score: -3.132 X-Spam-Level: X-Spam-Status: No, score=-3.132 tagged_above=-10 required=5 tests=[AWL=-0.533, BAYES_00=-2.599] Received: from zimbra.peytz.dk ([127.0.0.1]) by localhost (zimbra.peytz.dk [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W3R2DbIgdWlD for ; Tue, 8 Jan 2008 11:19:21 +0100 (CET) Received: from [192.168.10.188] (axa.peytz.dk [80.160.174.169]) by zimbra.peytz.dk (Postfix) with ESMTP id B16C432C003 for ; Tue, 8 Jan 2008 11:19:20 +0100 (CET) Message-ID: <47834E29.90902@chsc.dk> Date: Tue, 08 Jan 2008 11:19:21 +0100 User-Agent: Thunderbird 3.0a1pre (Windows/2008010303) MIME-Version: 1.0 To: internals@lists.php.net Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Stream wrapper support in realpath() From: lists@chsc.dk (Christian Schmidt) AFAICS realpath() currently only works with files and not other stream wrappers. Is there any chance that realpath() will support custom stream wrappers? I think it can be implemented in a BC way: If the wrapper class doesn't have a wrapper::realpath() method, realpath() just returns false like it does today. I hope this is the right place to ask. Thanks, Christian