Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/azozzalfiras/read-file-mobileprovision

Read File .mobileprovision in PHP
https://github.com/azozzalfiras/read-file-mobileprovision

apple azozzalfiras mobileprovision php plist

Last synced: 2 days ago
JSON representation

Read File .mobileprovision in PHP

Awesome Lists containing this project

README

        

# Read-File-Mobileprovision
Read File .mobileprovision in PHP

# First Import file Functions.php
```PHP
include ("Functions.php");
```

# Second Call Function's
```PHP
// file Path
$filename = "1.mobileprovision";

// call function's
$array = ConvertFileMobileProvisionToArray($filename);

// TeamName
// Azozz ALFiras
// Will get string : Azozz ALFiras
$readfile = ReadValueFromArray($array,"TeamName");

print_r($readfile); // will show array u can use $readfile[0];

// or foreach($readfile as $item){
// echo $item[0];
// }

```