Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:107572 Return-Path: Delivered-To: mailing list internals@lists.php.net Received: (qmail 92000 invoked from network); 18 Oct 2019 11:01:30 -0000 Received: from unknown (HELO php-smtp3.php.net) (208.43.231.12) by pb1.pair.com with SMTP; 18 Oct 2019 11:01:30 -0000 Received: from php-smtp3.php.net (localhost [127.0.0.1]) by php-smtp3.php.net (Postfix) with ESMTP id 674F22D20D2 for ; Fri, 18 Oct 2019 01:46:21 -0700 (PDT) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on php-smtp3.php.net X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=BAYES_05,RCVD_IN_DNSWL_LOW, SPF_HELO_NONE autolearn=no autolearn_force=no version=3.4.2 X-Spam-ASN: AS6830 84.116.0.0/16 X-Spam-Virus: No Received: from vie01a-dmta-pe06-3.mx.upcmail.net (vie01a-dmta-pe06-3.mx.upcmail.net [84.116.36.16]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by php-smtp3.php.net (Postfix) with ESMTPS for ; Fri, 18 Oct 2019 01:46:20 -0700 (PDT) Received: from [172.31.216.235] (helo=vie01a-pemc-psmtp-pe12.mail.upcmail.net) by vie01a-dmta-pe06.mx.upcmail.net with esmtp (Exim 4.92) (envelope-from ) id 1iLNtr-0007AY-2l for internals@lists.php.net; Fri, 18 Oct 2019 10:46:19 +0200 Received: from mail02.home ([213.47.8.56]) by vie01a-pemc-psmtp-pe12.mail.upcmail.net with ESMTP id LNssi7sQHwlysLNstiTJxG; Fri, 18 Oct 2019 10:45:19 +0200 X-Env-Mailfrom: markus@fischer.name X-Env-Rcptto: internals@lists.php.net X-SourceIP: 213.47.8.56 X-CNFS-Analysis: v=2.3 cv=E5OzWpVl c=1 sm=1 tr=0 a=UsP8JIz990cEySE/ILGzbQ==:117 a=UsP8JIz990cEySE/ILGzbQ==:17 a=jpOVt7BSZ2e4Z31A5e1TngXxSK0=:19 a=IkcTkHD0fZMA:10 a=MKtGQD3n3ToA:10 a=1oJP67jkp3AA:10 a=XobE76Q3jBoA:10 a=2EALvoLjsrEA:10 a=ZZnuYtJkoWoA:10 a=34c8lLt6uHA31pPyaJEA:9 a=QEXdDO2ut3YA:10 Received: from mail02.home ([192.168.1.14] helo=the-matrix-has-you.local) by mail02.home with esmtp (Exim 4.72) (envelope-from ) id 1iLNss-0005uh-31 for internals@lists.php.net; Fri, 18 Oct 2019 10:45:18 +0200 To: internals@lists.php.net References: <929062F1-E83F-4D81-B2C6-3916B744E101@newclarity.net> <5da8e051.1c69fb81.b05ef.ef7dSMTPIN_ADDED_MISSING@mx.google.com> Message-ID: Date: Fri, 18 Oct 2019 10:45:17 +0200 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:60.0) Gecko/20100101 Thunderbird/60.9.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam_score: -2.9 X-Spam_score_int: -28 X-Spam_bar: -- X-Spam_report: Spam detection software, running on the system "scanner01.home", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: On 18.10.19 00:07, Mike Schinkel wrote: > case 'educationtype': > $update = false; > fallthrough; I was about to suggest `continue`, alas we know that would clash :-) Suggestion: `next;` instead? [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-CMAE-Envelope: MS4wfO8XcfGAp/GK8VmmpxYf3ltu7G0fmqKeRd0/381x5L8+Gfzsy5L0qo5WlODuGvlYlQYSZlhbR9uxQKqlQriQBy5nblGUSf5inWf6p4lNeO6JmLw3FmrE 5B0KGjuEvocJZnhvkMiapWwA4QIff+GkKGZ16s39s2u9g4otnQpiTiUt X-Envelope-From: Subject: Re: [PHP-DEV] Re: Adding explicit intent for SWITCH/CASE fall through? From: markus@fischer.name (Markus Fischer) On 18.10.19 00:07, Mike Schinkel wrote: > case 'educationtype': > $update = false; > fallthrough; I was about to suggest `continue`, alas we know that would clash :-) Suggestion: `next;` instead? - Markus