Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:130250 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by lists.php.net (Postfix) with ESMTPS id C03601A00BC for ; Wed, 4 Mar 2026 20:22:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1772655773; bh=Wkbs6eGrkI15JQM8Gd/yxVZ16709sjqbJz2maojcVuw=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=UcUtlUckuG/tM8Z3+7CZpkGTnAdXulrOtaDEmEdAo1kQv5w1ChYUdixn3bbZ4jxM7 97YUW4rQrsoqeBuC5tmjEdQOybzVG0ZAjTiVW0DEcxK1BpN8CsM0ikgmNFXvXbPieK Br1afICRrnkZvzx2IRpW48nqFvM03H7UDIAAul3I1Uan86tIVqruFNDa55mp8c8jB9 iEEUM9tx0H6iPXxdrHoFoQ4rEEwQ37AwKDX2ex4K+Ywyyp3oXqyyqnj6eHCMagfqPU erlOCncjTXRSsgmPhs8q5MuAWxqrdkWzfxlsdS431WEkuBFDO5mT7kU0V9PBLge8bK FRgrKKNgtLUWg== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id 8A410180084 for ; Wed, 4 Mar 2026 20:22:52 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.1 (2024-03-25) on php-smtp4.php.net X-Spam-Level: X-Spam-Status: No, score=0.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_NONE, SPF_PASS autolearn=no autolearn_force=no version=4.0.1 X-Spam-Virus: No X-Envelope-From: Received: from chrono.xqk7.com (chrono.xqk7.com [176.9.45.72]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 4 Mar 2026 20:22:52 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bastelstu.be; s=mail20171119; t=1772655764; bh=RLy6/adDxc/oaihd+kVga6BCPEhVdDQ3BIGMh7PmR7U=; h=MIME-Version:Date:From:To:Cc:Subject:In-Reply-To:References: Message-ID:Content-Type:from:to:cc:subject:message-id; b=lCO+hOimFRY1oFA9YNw6T2SITdbsa0ALfD3c5Zic72C5qZ48ZsIOHRYKDNyxs40x1 GV1Wl+vstO4EXJ87l2zMFu15uMNLTefVg1h2RNf9TQX5ZdHg7kBJ4b9c8hb8aOgB2r 2qQ8+Nt2XFP1EXkhpi5nTiPcv5pb6s0/UBkM5kd4+0ulS5nGQAWytLGmRjXsJFIp9W GcCfxkjPNI6siMXbWbGC9qDQ3ZAir076bt1XT8V50JOyE4T33X28vqxh1SAIRB6uy7 iYKFnX+QvpubZi8efiunb9FCE+YZPqZ9d0T2CyLJheBz4v1IIxiplS41XX1oGJibwh vo6hcjtXCNy6Q== Precedence: list list-help: list-unsubscribe: list-post: List-Id: x-ms-reactions: disallow MIME-Version: 1.0 Date: Wed, 04 Mar 2026 21:22:44 +0100 To: Calvin Buckley Cc: PHP internals Subject: Re: [PHP-DEV] Displaying function arguments in errors In-Reply-To: <48497C73-5009-4ABC-A83A-702EFD4FAB7F@cmpct.info> References: <48497C73-5009-4ABC-A83A-702EFD4FAB7F@cmpct.info> Message-ID: <2342f495b48ce5d8554db485c199d1d7@bastelstu.be> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit From: tim@bastelstu.be (=?UTF-8?Q?Tim_D=C3=BCsterhus?=) Hi Am 2026-03-04 20:24, schrieb Calvin Buckley: > What this PR will do is effectively turn this: > > ``` > Warning: unlink('/tmp'): Operation not permitted in > /Users/calvin/src/chmod.php on line 3 > > Warning: chown('/', 'calvin'): Operation not permitted in > /Users/calvin/src/chmod.php on line 4 > > Warning: chmod('/', 511): Operation not permitted in > /Users/calvin/src/chmod.php on line 5 > ``` > > Into this: > > ``` > Warning: unlink(/tmp): Operation not permitted in > /Users/calvin/src/chmod.php on line 3 > > Warning: chown(): Operation not permitted in > /Users/calvin/src/chmod.php on line 4 > > Warning: chmod(): Operation not permitted in > /Users/calvin/src/chmod.php on line 5 > ``` Did you mix up the two code blocks? I suspect the first block block is the “New” output and the second one the “Old” output? Best regards Tim Düsterhus