Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:87651 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 95202 invoked from network); 5 Aug 2015 15:30:52 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 5 Aug 2015 15:30:52 -0000 Authentication-Results: pb1.pair.com header.from=nicolas.grekas@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=nicolas.grekas@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.212.169 as permitted sender) X-PHP-List-Original-Sender: nicolas.grekas@gmail.com X-Host-Fingerprint: 209.85.212.169 mail-wi0-f169.google.com Received: from [209.85.212.169] ([209.85.212.169:36396] helo=mail-wi0-f169.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id AD/C0-11835-A2C22C55 for ; Wed, 05 Aug 2015 11:30:51 -0400 Received: by wicgj17 with SMTP id gj17so197627384wic.1 for ; Wed, 05 Aug 2015 08:30:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc:content-type; bh=xCNMsgPdUwcc+dftti07AllHJ+MmzTvLwo67HfyfH/c=; b=MUIjFjo9/s2jdX+M7sIKXV/Q1U4ftPfSWQkhsxnpBZ284DoryMS/mMDt6AmwgRod0H gg0btDfUjXNtpTpD+q6i8uBRFOPAUHxRNOjcrWCbLkZaA/9Wh7rKaZObyjtZHy2IPbNK +uwK5SvAwGWCehyLS2YMr5fBy9Fk9F2Ard1gq28Idjkk/ctrdtI5FdiVuL++eFjLU4/k fFkPwP1KftmiQz3ZX0LKcI9yKvwZQ4kM5zav2mtRdMh0IjlV3T7VxnSjlaPLtKlwivTd 80noEK9hcxkZ2K2f2K7126imk/2yVO0N9zS8WuZ1rFnJSqOx6zbp8rS5YQ6ad7xPKkX5 kVJQ== X-Received: by 10.194.190.110 with SMTP id gp14mr21871983wjc.76.1438788647829; Wed, 05 Aug 2015 08:30:47 -0700 (PDT) MIME-Version: 1.0 Sender: nicolas.grekas@gmail.com Received: by 10.27.172.10 with HTTP; Wed, 5 Aug 2015 08:30:28 -0700 (PDT) In-Reply-To: References: Date: Wed, 5 Aug 2015 17:30:28 +0200 X-Google-Sender-Auth: YwxLS9q1dfwX1NiN9ZPbyITroiU Message-ID: To: Pierre Joye Cc: PHP internals Content-Type: multipart/alternative; boundary=047d7bb04fbe42c5c8051c92167d Subject: Re: [PHP-DEV] realpath() on MacOSX doesn't normalize the case of characters From: nicolas.grekas+php@gmail.com (Nicolas Grekas) --047d7bb04fbe42c5c8051c92167d Content-Type: text/plain; charset=UTF-8 > > For windows, there is no path normalization either btw. It would makes > realpath more expensive. > I don't know what you mean by "no path normalization", but as far as the case is concerned, there IS normalization: var_dump(realpath(strtolower(__FILE__))); var_dump(realpath(strtoupper(__FILE__))); displays two times exactly the same string on Windows --047d7bb04fbe42c5c8051c92167d--