Opens a file or URL in PHP

2.0.0 2020-07-20 15:18 UTC

This package is auto-updated.

Last update: 2024-04-21 02:23:15 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 likesistemas/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