florianv / open
Opens a file or URL in PHP
1.0.0
2018-03-23 13:08 UTC
Requires
- symfony/console: ~2.3|~3.0|~4.0
- symfony/process: ~2.3|~3.0|~4.0
This package is auto-updated.
Last update: 2026-02-05 03:18:46 UTC
README
Opens a file or URL in PHP, in a cross-platform way. This is a PHP port of node-open.
Installation
$ composer require florianv/open
Usage
Utility
Use the open() method to open a file or URL using the default or a specific app
use Open\Open; Open::open('picture.jpg'); // It will use the default browser Open::open('http://google.com'); // It will try to use Chrome Open::open('http://google.com', 'chrome');
Command
Open Google using your default browser
$ php bin/open http://google.com
Open Google using the specified browser (firefox)
$ php bin/open http://google.com firefox