Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/azozzalfiras/read-file-mobileprovision
- Owner: AzozzALFiras
- License: epl-2.0
- Created: 2023-07-19T08:33:32.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-19T08:44:49.000Z (over 1 year ago)
- Last Synced: 2023-07-19T09:46:47.065Z (over 1 year ago)
- Topics: apple, azozzalfiras, mobileprovision, php, plist
- Language: PHP
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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];
// }```