Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:123883 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 qa.php.net (Postfix) with ESMTPS id AFC211A009C for ; Wed, 26 Jun 2024 19:50:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1719431505; bh=d3Q1hBwLENErpu6O3UIanPYiEfxhpZylRb+LIr7A+wY=; h=Date:Subject:To:References:From:In-Reply-To:From; b=CJ51xslt4L0iExw7hOlbvLjVepHsD6vY5MIGW5RL61TycHmhb1CKufJykfRbyKDXA blB89aYqbJyWtm/Purk2h76GPkM05Ya4fkVmIWpUF8QJ3Uz24tK5Fd0uKAWl2cvR3j Hko+asgTDyzcmFmgq1pzLL5o8xYOlGoPPhOzdedKEbHJMhWbc9iepJfdtW5MX2YFyo mg7UVHOANdqFDweRvWdnciCKwBlLGAbcBqmqmIAxbUh75TQ/0ehWKARixlfK09L/Ff IEsrc7W/ByJH6n1Avp93pUMtkajyAPgL0iELfxqbixVzF/NiCOSSqlBNbA6l8vQL9i RiIQ0gpa9KDEQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id CAB3D180D0C for ; Wed, 26 Jun 2024 19:51:42 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) 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,T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: Error (Cannot connect to unix socket '/var/run/clamav/clamd.ctl': connect: Connection refused) X-Envelope-From: Received: from james.smtp.mailx.hosts.net.nz (james.smtp.mailx.hosts.net.nz [43.245.52.187]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Wed, 26 Jun 2024 19:51:41 +0000 (UTC) Received: from 222-152-65-7-vdsl.sparkbb.co.nz ([222.152.65.7] helo=[192.168.1.67]) by james.smtp.mailx.hosts.net.nz with esmtpsa authed as varteg.nz (TLS1.3:ECDHE_X25519__RSA_PSS_RSAE_SHA256__AES_128_GCM:128) (Exim 4.96) (envelope-from ) id 1sMYer-008Bl5-16 for internals@lists.php.net; Thu, 27 Jun 2024 07:50:21 +1200 Message-ID: Date: Thu, 27 Jun 2024 07:50:10 +1200 Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PHP-DEV] [Early Feedback] Pattern matching To: internals@lists.php.net References: <2a6b92eb-d5e9-4a1a-9548-a068ac42ebd2@app.fastmail.com> <1E295280-619B-4490-B53C-0899B64F9215@chaz.works> <97a93ae2-5202-47eb-bf51-ec1e976ea765@app.fastmail.com> <78D0FFF7-3867-4D71-B0C0-FA23E5121C39@rwec.co.uk> <10390963-0c2c-441a-bcce-20a0433948c5@app.fastmail.com> Content-Language: en-GB In-Reply-To: <10390963-0c2c-441a-bcce-20a0433948c5@app.fastmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Hosts-DKIM-Check: none From: weedpacket@varteg.nz (Morgan) On 2024-06-26 09:58, Rob Landers wrote: > On Tue, Jun 25, 2024, at 23:10, Rowan Tommins [IMSoP] wrote: >> >> >> It may be questionable to give meaning to the difference in some of >> these cases, but different it definitely is. > > True, but I was mainly referring to what you would do after performing > an 'is', in which case, you probably wouldn't be using any of those > functions, or if you needed to, then why do you need 'is'? Even with the > > $hasFoo = $arr is [?'foo' => string]; > > You still have to run array_key_exists() to determine whether the key > exists, which means you likely still need to figure out a default value, > and null-coalesce is perfect for that ... but then it just points out > that it isn't that useful of a check, and that it is inconsistent with > itself. > So the issue has nothing to do with this hypothetical infinity of unobservable nulls, and comes entirely down to the fact that with this pattern a variable may pass a) because it does not have a key named 'foo', or b) because it has a key named 'foo' with a string value. In other words, "this key is optional, but if it is defined it must match this pattern". On its lonesome, that doesn't look very useful, but I expect it would be one component of a larger pattern (such as "['bar' => string, ?'foo' => string, ...]"). Rather than (near-)duplicate blocks for "it does not have the key" and "it has the key and it holds a string", there can be one block (which might or might not care about the distinction).