svn: /phpdoc/de/trunk/language/predefined/ serializable.xml
[email protected] (Nikita Popov)
| Newsgroups | php.doc.de |
|---|---|
| Message-ID | <[email protected]> |
nikic Thu, 30 Jun 2011 13:29:18 +0000
Revision: http://svn.php.net/viewvc?view=revision&revision=312686
Log:
Sync DE serializable docs to EN
Changed paths:
U phpdoc/de/trunk/language/predefined/serializable.xml
Modified: phpdoc/de/trunk/language/predefined/serializable.xml
===================================================================
--- phpdoc/de/trunk/language/predefined/serializable.xml 2011-06-30 13:29:05 UTC (rev 312685)
+++ phpdoc/de/trunk/language/predefined/serializable.xml 2011-06-30 13:29:18 UTC (rev 312686)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 292734 Maintainer: sammywg Status: ready -->
+<!-- EN-Revision: 310943 Maintainer: sammywg Status: ready -->
<phpdoc:classref xml:id="class.serializable" xmlns:phpdoc="http://php.net/ns/phpdoc" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
@@ -78,6 +78,8 @@
$obj = new obj;
$ser = serialize($obj);
+var_dump($ser);
+
$newobj = unserialize($ser);
var_dump($newobj->getData());
@@ -87,6 +89,7 @@
&example.outputs.similar;
<screen>
<![CDATA[
+string(42) "C:3:"obj":27:{s:19:"Meine private-Daten";}"
string(15) "Meine private-Daten"
]]>
</screen>