Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:130253 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 EB98C1A00BC for ; Wed, 4 Mar 2026 22:16:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1772662604; bh=gPrFXURv0WRJwWMdteZqbq51JXyzJhZxFoQ65e29AsU=; h=Subject:From:In-Reply-To:Date:Cc:References:To:From; b=VQdopGXSQPM42W6xnlmqJkqWbu1uOYkZ2L9XFGleqVEwMXdEHLFwxGaEWY8JGnH2B xvfnnD0FPWaqXufQ88egKuwZYx5o+m26WjKB6t8gbcAmNGvq2pccNU8TvMJOZI2G0y 4x9Dmq+gSlqJVb6Iuc6dUqVLv8QiGvcO/Uh+6C85ckMe8703a5EiEYKsyPt9+Yygzv SrLiVMqx9LlsOOF8JOST+ufoQCtquBcf03V4/GMjdHbrxv9lHnp44MWYqv0Uyo/jCI 3xmWzEswCzefR+4Du+fHCrZLx0t2Leeip170q8/VLfF85Lz0WniJl1vLAxkU1avEOI kB+UyUToAnPjA== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id E9DFC18005B for ; Wed, 4 Mar 2026 22:16:43 +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.8 required=5.0 tests=BAYES_50,DMARC_MISSING, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=4.0.1 X-Spam-Virus: No X-Envelope-From: Received: from supercat.cmpct.info (supercat.cmpct.info [71.19.146.230]) (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 22:16:33 +0000 (UTC) Received: from smtpclient.apple (fctnnbsc38w-142-134-101-31.dhcp-dynamic.fibreop.nb.bellaliant.net [142.134.101.31]) by supercat.cmpct.info (Postfix) with ESMTPSA id ECDFB4253D; Wed, 04 Mar 2026 22:16:26 +0000 (UTC) Content-Type: text/plain; charset=utf-8 Precedence: list list-help: list-unsubscribe: list-post: List-Id: x-ms-reactions: disallow Mime-Version: 1.0 (Mac OS X Mail 16.0 \(3864.400.21\)) Subject: Re: [PHP-DEV] Displaying function arguments in errors In-Reply-To: <2342f495b48ce5d8554db485c199d1d7@bastelstu.be> Date: Wed, 4 Mar 2026 18:16:15 -0400 Cc: PHP internals Content-Transfer-Encoding: quoted-printable Message-ID: References: <48497C73-5009-4ABC-A83A-702EFD4FAB7F@cmpct.info> <2342f495b48ce5d8554db485c199d1d7@bastelstu.be> To: =?utf-8?Q?Tim_D=C3=BCsterhus?= X-Mailer: Apple Mail (2.3864.400.21) From: calvin@cmpct.info (Calvin Buckley) On Mar 4, 2026, at 4:22=E2=80=AFPM, Tim D=C3=BCsterhus = wrote: >=20 > Hi >=20 > 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 >> ``` >=20 > Did you mix up the two code blocks? I suspect the first block block is = the =E2=80=9CNew=E2=80=9D output and the second one the =E2=80=9COld=E2=80= =9D output? >=20 > Best regards > Tim D=C3=BCsterhus An oopsie indeed with a copy-paste error.=