Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:72859 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 47186 invoked from network); 28 Feb 2014 10:01:42 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Feb 2014 10:01:42 -0000 Authentication-Results: pb1.pair.com header.from=cryptocompress@googlemail.com; sender-id=pass Authentication-Results: pb1.pair.com smtp.mail=cryptocompress@googlemail.com; spf=pass; sender-id=pass Received-SPF: pass (pb1.pair.com: domain googlemail.com designates 209.85.215.179 as permitted sender) X-PHP-List-Original-Sender: cryptocompress@googlemail.com X-Host-Fingerprint: 209.85.215.179 mail-ea0-f179.google.com Received: from [209.85.215.179] ([209.85.215.179:55539] helo=mail-ea0-f179.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 2E/C2-28957-58E50135 for ; Fri, 28 Feb 2014 05:01:42 -0500 Received: by mail-ea0-f179.google.com with SMTP id q10so2503360ead.24 for ; Fri, 28 Feb 2014 02:01:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.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=+gIuOq6cyNOdNQOo46x6kzcl0PTYMXsOf9XlX0Wgn/g=; b=Mrc14YwlijgltTOedoSNemigs6MOLq9YbQ5hrfCyTa+2b/ur+wWpj96IFdIIRccSuu JRn88qDL3B4gKJkMkxllPj9JNHrK3AEoFXNNPLTfJF2aechRvVjmiuCwoHQRHZj22DAF b0f1TZQpw8eB1sjtzOlFqgxHOQqhhA4XqAp/K3fuDCWHtwG7i962plTIjPV5ZYAtRIL6 +J9Wq0zhV5janQtX85pkrQinlJvd1pYOKQtj5TpYsltseWB0amPkh4zCvS6T5ApnIUue iTd/hiIfSDnUsLezGRAOvpdM2YK8tsF79WrNR1ECCWNaOxzRY9Dvi7JuE7c+TMMRxqm3 Jk6g== X-Received: by 10.14.95.2 with SMTP id o2mr20080617eef.69.1393581699133; Fri, 28 Feb 2014 02:01:39 -0800 (PST) Received: from [192.168.1.115] (mnch-5d877c24.pool.mediaWays.net. [93.135.124.36]) by mx.google.com with ESMTPSA id o43sm8481343eef.12.2014.02.28.02.01.37 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Fri, 28 Feb 2014 02:01:38 -0800 (PST) Message-ID: <53105E80.5010307@googlemail.com> Date: Fri, 28 Feb 2014 11:01:36 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Lazare Inepologlou CC: PHP Developers Mailing List References: <52D865C7.4070009@sugarcrm.com> <531044A8.8050002@googlemail.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] Introducing "Array Of" RFC From: cryptocompress@googlemail.com (Crypto Compress) > I do not really understand your point here but I want to shout out > that null is definitely a type having only one possible value. This is > one thing that PHP got right in contrast to Java, C# etc. class Foo { private Bar $bar; // What type is $bar with "undefiend" value here? } In PHP there is no type system, so it might seem as this is of type "null". It is not.