florianv / open
Opens a file or URL in PHP
Installs: 288
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 5
Open Issues: 3
Language:Shell
Requires
- symfony/console: ~2.3|~3.0|~4.0
- symfony/process: ~2.3|~3.0|~4.0
This package is auto-updated.
Last update: 2024-11-05 00:43:44 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