Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:67021 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 37732 invoked from network); 9 Apr 2013 21:36:59 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 9 Apr 2013 21:36:59 -0000 Authentication-Results: pb1.pair.com smtp.mail=rasmus@lerdorf.com; spf=permerror; sender-id=unknown Authentication-Results: pb1.pair.com header.from=rasmus@lerdorf.com; sender-id=unknown Received-SPF: error (pb1.pair.com: domain lerdorf.com from 209.85.128.52 cause and error) X-PHP-List-Original-Sender: rasmus@lerdorf.com X-Host-Fingerprint: 209.85.128.52 mail-qe0-f52.google.com Received: from [209.85.128.52] ([209.85.128.52:61963] helo=mail-qe0-f52.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id DC/26-07032-AF984615 for ; Tue, 09 Apr 2013 17:36:59 -0400 Received: by mail-qe0-f52.google.com with SMTP id jy17so3974399qeb.11 for ; Tue, 09 Apr 2013 14:36:56 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:message-id:date:from:user-agent:mime-version:to:cc :subject:references:in-reply-to:x-enigmail-version:content-type :content-transfer-encoding:x-gm-message-state; bh=XmkfhafHJnaTYAsmLKgMyN6vlj7i2vtO+wY639cUkwM=; b=aGdNElvyH8gXpb1v076httD1WeQkWPTYKIdJCTDfGIK5kCDepLJfZt7rSKBMQtvk0I Z+cSJDqfg1ZMkLh5xGSxUy9WpwrSeuAdSmNP6njitfiahNXX/YHjttC2ACLXRAmGIkBo lA78w3Bridnn/fos0JRpQYXafu+QoVa8PEk1WUdced8v4DyvBFm3Q7RdHQtg2BVtHb44 dtgtEPitZbN95oYQkxk3+6o7qUoGTT7J3n9EU693GkHx4PGpRKWRWVNmxZG2eAuP2WEv 37NYXSBhWVELyVdVyRrkxjLu1jRGR2YqvqEi0GVj+fqVJeZea8oQQArVQW8ggmRwHT9k Fz8w== X-Received: by 10.229.253.136 with SMTP id na8mr2117022qcb.5.1365543415818; Tue, 09 Apr 2013 14:36:55 -0700 (PDT) Received: from [192.168.1.72] (d50-98-36-96.bchsia.telus.net. [50.98.36.96]) by mx.google.com with ESMTPS id e3sm27466723qeo.0.2013.04.09.14.36.50 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 09 Apr 2013 14:36:55 -0700 (PDT) Message-ID: <516489F1.70106@lerdorf.com> Date: Tue, 09 Apr 2013 14:36:49 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130404 Thunderbird/17.0.5 MIME-Version: 1.0 To: Madara Uchiha CC: Stas Malyshev , Laruence , PHP Internals References: <51647536.6030108@sugarcrm.com> In-Reply-To: X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Gm-Message-State: ALoCoQksXHBAVF4SP3+/htaXL3TEmP35NzITz/4XZ704Dt2VciL11geyS97e++INOLo4qgrELT51 Subject: Re: [PHP-DEV] [PROPOSAL] add a leading backslash to classname when serializing/var_exporting From: rasmus@lerdorf.com (Rasmus Lerdorf) On 04/09/2013 01:23 PM, Madara Uchiha wrote: > Well, why would you need to serialize an object in one version of PHP, > and unserialize it in another? Unfortunately people do that all the time. They store serialized versions of stuff in databases and other backends and even send it across the wire from one machine to another, so it is quite common for something serialized in one version to need to be unserialized in another. -Rasmus