gm333
gm333

Reputation: 136

iOS Enterprise OTA - Is there a way to output plist from php?

I want to use php to output plist that is in item-service link.

Like this itms-services://?action=download-manifest&url=xxxxxx.php?id=xxx (In php file, output plist string from app data in db)

Is it possible? If it is possible, please show me example code in php file.

Upvotes: 0

Views: 332

Answers (1)

Greg Martin
Greg Martin

Reputation: 5064

A plist file is just a specially formed XML file. This is something you could generate in any language. Examples for PHP XML output can be found in other questions such as this one: How to output XML string from PHP

Upvotes: 1

Related Questions