Rahul Dev
Rahul Dev

Reputation: 175

How to read a file with different extension using php?

I want to read a file with .grf extension. It got folders, files, images etc inside. Its a packed file using GRF Builder. It can also be extracted using the same software but i want to read it using php. Is it possible to do that?

GRF File

Thanks

Upvotes: 0

Views: 167

Answers (1)

webbiedave
webbiedave

Reputation: 48897

PHP does not come with GRF capabilities built-in. You'll need to find 3rd party extensions or classes such as:

https://github.com/vthibault/roBrowser/tree/master/client

https://github.com/vthibault/ROChargenPHP/blob/master/loaders/class.Grf.php

https://github.com/trojal/php-ro

Upvotes: 1

Related Questions