Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:72119 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 33790 invoked from network); 3 Feb 2014 21:04:06 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 3 Feb 2014 21:04:06 -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 74.125.83.49 as permitted sender) X-PHP-List-Original-Sender: cryptocompress@googlemail.com X-Host-Fingerprint: 74.125.83.49 mail-ee0-f49.google.com Received: from [74.125.83.49] ([74.125.83.49:44256] helo=mail-ee0-f49.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 98/62-35654-54400F25 for ; Mon, 03 Feb 2014 16:04:06 -0500 Received: by mail-ee0-f49.google.com with SMTP id d17so3922001eek.36 for ; Mon, 03 Feb 2014 13:04:02 -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:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=G5WQoE9xRaOFvBEu5tEUl9ejB64uVySBAruOBFxXgHM=; b=s4qhCTepUsun3tV80YnQBCL7B0GZDfXRr0igXeILhvRLVii/UARUMniM/Tj8hpVtVe af96lfunvHKOrV6oHP2VPrYgULk8szfDYL5YM+6+nabBesyOcsTW3H3/cpGu6puaJjFE 9TOMWzvujdfiaC/cS7Yk53mHi9jo8z3coQW2e/iKbT+4yGRSsxjGr3R+OywNmSA3tEAL YP1ZIVwrWL3lTgMxy3P0gnPlXBjfUm4fYHU4jSiMu5giA1oKkKos4fG/6/BgHMj58EvB jkMkGZgqV9giUxlL9A6U/hAUBvUSJWy9SawAWQdSWg3vXMdhDllF3P24ii+Bmh8l4ghc aZag== X-Received: by 10.14.202.8 with SMTP id c8mr5423832eeo.88.1391461442551; Mon, 03 Feb 2014 13:04:02 -0800 (PST) Received: from [192.168.1.115] (mnch-4d04257e.pool.mediaWays.net. [77.4.37.126]) by mx.google.com with ESMTPSA id x2sm79592066eeo.8.2014.02.03.13.04.00 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 03 Feb 2014 13:04:01 -0800 (PST) Message-ID: <52F00437.7010903@googlemail.com> Date: Mon, 03 Feb 2014 22:03:51 +0100 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: PHP Developers Mailing List References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [PHP-DEV] [RFC] [VOTE] __debugInfo() From: cryptocompress@googlemail.com (Crypto Compress) Hi! This is a somewhat unexpected BC break in a point release. Why no 6.0 option? class Dog { public function __debugInfo() { return ['Cat']; } } var_dump(new Dog); // Array { "Cat" } Name is a bit ambiguous. This method does not debug anything as in xdebug or phpdbg. It exposes internal "__state". cryptocompress