Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:58436 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 30407 invoked from network); 2 Mar 2012 00:12:38 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 2 Mar 2012 00:12:38 -0000 Authentication-Results: pb1.pair.com header.from=keisial@gmail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=keisial@gmail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.170 as permitted sender) X-PHP-List-Original-Sender: keisial@gmail.com X-Host-Fingerprint: 74.125.82.170 mail-we0-f170.google.com Received: from [74.125.82.170] ([74.125.82.170:65425] helo=mail-we0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B5/83-13741-570105F4 for ; Thu, 01 Mar 2012 19:12:37 -0500 Received: by werh12 with SMTP id h12so851963wer.29 for ; Thu, 01 Mar 2012 16:12:34 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=VPsMv/khdjkMXg1qjNd45OS9AfgfvF0ymPBMqwbbWiI=; b=vj6FaaKVUGPGjTjHnvUX2pIPN1RRrg4AUQzSiUgem3zDV1gfilwUCzoPWcjXZdYjY+ mRYeiG2fxX15u2qUYZMzkx9F7/Z6wVH+g1GlRnnktt0nwtf16F8Yeqw9Iv2n95CCS6NX qkeadIiwpV2QbeoCg2HGD17Zr2X4oRLhQq6tXaK5F2b7h/d8xxBpOFp6tfEmYveLfqSp hyRA1+2aPKg0P4ExDlTtcbXJJ+0+f0GU4wXtvcArx8KxZmAYOdCbrNSbxXxWD90PR/u2 DnJM7uy1/+XRuNXB/JZWPdG9BrO9u/SOxNTY1Sobodl9uMLngPx/ttJVMjfD/Ezp9i/u uK4Q== Received: by 10.180.101.228 with SMTP id fj4mr109960wib.4.1330647154644; Thu, 01 Mar 2012 16:12:34 -0800 (PST) Received: from [192.168.1.26] (237.Red-83-55-231.dynamicIP.rima-tde.net. [83.55.231.237]) by mx.google.com with ESMTPS id dr5sm589220wib.0.2012.03.01.16.12.32 (version=SSLv3 cipher=OTHER); Thu, 01 Mar 2012 16:12:33 -0800 (PST) Message-ID: <4F501197.8040007@gmail.com> Date: Fri, 02 Mar 2012 01:17:27 +0100 User-Agent: Thunderbird MIME-Version: 1.0 To: Simon Schick CC: internals@lists.php.net References: <4F5009B9.90905@gmail.com> <4F500BB7.70903@thelounge.net> In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] PHP 5.4.0 released! From: keisial@gmail.com (=?UTF-8?B?w4FuZ2VsIEdvbnrDoWxleg==?=) On 02/03/12 01:00, Simon Schick wrote: > Hi, all > > When will the documentation be ready? > > For example you wrote that something has changed to the keywords *continue *and > *break *- but I dont get what and it's not defined in here: > http://www.php.net/manual/en/control-structures.continue.php > > Bye > Simon The option to use a variable as target for the break/continue. Ie. you no longer can do break $var; or continue $var; It's not telling you that you can do that, so the docs don't seem wrong. :)