Login   Register  
PHP Classes
elePHPant
Icontem

File: examples/PrintManifestXml.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Tufan Baris YILDIRIM  >  Apk Parser  >  examples/PrintManifestXml.php  >  Download  
File: examples/PrintManifestXml.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Apk Parser
Extract Application Package files in APK format
Author: By
Last change:
Date: 2012-03-27 01:33
Size: 174 bytes
 

Contents

Class file image Download
<?php
    
include '../ApkParser.php';
    
$apk = new ApkParser('EBHS.apk');

    
header("Content-Type:text/xml;Charset=UTF-8");
    echo 
$apk->getManifest()->getXmlString();