Chilkat HOME Android™ ASP Visual Basic VB.NET C# iOS (IPhone) Objective-C C++ C Unicode C++ Unicode C MFC Delphi DLL Delphi ActiveX FoxPro Java Perl PHP Extension PHP ActiveX Python PowerShell Ruby SQL Server VBScript
|
(PHP Extension) Compress XML ContentDemonstrates how to compress the content of an XML node. Note: This does not compress the node's children, only the text content. The input XML, available at http://www.chilkatsoft.com/data/compress1.xml, is this:
<root>
<fox>This is content that will be compressed.
0The quick brown fox jumps over the lazy dog
1The quick brown fox jumps over the lazy dog
2The quick brown fox jumps over the lazy dog
3The quick brown fox jumps over the lazy dog
4The quick brown fox jumps over the lazy dog
5The quick brown fox jumps over the lazy dog
6The quick brown fox jumps over the lazy dog
7The quick brown fox jumps over the lazy dog
8The quick brown fox jumps over the lazy dog
9The quick brown fox jumps over the lazy dog
<child1>
<grandchild>This is not compressed.</grandchild>
</child1>
</fox>
</root>
<?php
// The "chilkat_9_3_2.php" is included in the Chilkat PHP Extension download
// The version number (9_3_2) should match version of the Chilkat extension used.
include("chilkat_9_3_2.php");
$xml = new CkXml();
// The sample input XML is available at http://www.chilkatsoft.com/data/compress1.xml
$success = $xml->LoadXmlFile('compress1.xml');
if ($success != true) {
print $xml->lastErrorText() . "\n";
exit;
}
// Navigate to the "fox" node, which is the 1st child:
$xml->FirstChild2();
// Zip compress the content:
$xml->ZipContent();
// Navigate back to the root:
$xml->GetRoot2();
// Examine the new XML document:
print $xml->getXml() . "\n";
// This is the XML w/ the compressed content in Base64 encoded format:
//
|
© 2000-2013 Chilkat Software, Inc. All Rights Reserved.