florianv/open

Opens a file or URL in PHP

Installs: 285

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 5

Open Issues: 3

Language:Shell

1.0.0 2018-03-23 13:08 UTC

This package is auto-updated.

Last update: 2024-04-04 23:20:55 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

License

MIT