Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:57571 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 98319 invoked from network); 30 Jan 2012 12:37:27 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 30 Jan 2012 12:37:27 -0000 Authentication-Results: pb1.pair.com header.from=lists@rotorised.com; sender-id=unknown Authentication-Results: pb1.pair.com smtp.mail=lists@rotorised.com; spf=permerror; sender-id=unknown Received-SPF: error (pb1.pair.com: domain rotorised.com from 203.88.115.241 cause and error) X-PHP-List-Original-Sender: lists@rotorised.com X-Host-Fingerprint: 203.88.115.241 ironport1-mx.cbr1.mail-filtering.com.au Received: from [203.88.115.241] ([203.88.115.241:9881] helo=ironport1-mx.cbr1.mail-filtering.com.au) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id EB/B4-53934-60F862F4 for ; Mon, 30 Jan 2012 07:37:27 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ap4EALmOJk+va78L/2dsb2JhbAApGq9cgXIBAQUnURELGAkWDwkDAgECAUUTCAEBiAEpuBqIPQEDAgIECgIBDAQDBAsBCAEFCQYDBBcBAgGCcRkEAgoCDQcBWzgBARWDHASacIUsh2E X-IronPort-AV: E=Sophos;i="4.71,591,1320584400"; d="scan'208";a="576347651" Received: from ju001lcs02.dfw.the-server.net.au (HELO ju001lcs02.dfw.the-server.com.au) ([175.107.191.11]) by ironport1-mta.cbr1.mail-filtering.com.au with ESMTP; 30 Jan 2012 23:37:16 +1100 Received: from [124.191.162.147] (helo=[192.168.0.10]) by ju001lcs02.dfw.the-server.com.au with esmtpa (Exim 4.69) (envelope-from ) id 1RrqTy-0003y2-Ni for internals@lists.php.net; Mon, 30 Jan 2012 23:37:15 +1100 Message-ID: <4F268EF6.9000308@rotorised.com> Date: Mon, 30 Jan 2012 22:37:10 +1000 User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: internals@lists.php.net References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] operators From: lists@rotorised.com (Ryan McCue) Adi Nita wrote: > Does anyone know what are the official names for the "->" and "=>" > operators? They don't seem to be included in the PHP documentation, > although I would have expected them to reside in the Operators section of > the manual. The tokens are T_OBJECT_OPERATOR and T_DOUBLE_ARROW respectively, if that helps: http://www.php.net/manual/en/tokens.php The namespace operator is T_NS_SEPARATOR. Hope that helps, -- Ryan McCue