edgrosvenor / php-clipboard
A PHP wrapper for Windows, Linux, and Mac Copy to Clipboard commands
0.3.0
2020-02-25 22:11 UTC
Requires
- php: ^7.2
This package is auto-updated.
Last update: 2024-10-26 08:57:22 UTC
README
This is a 5-minute package I threw togehter that simply wraps the Mac, Windows, and (most common) Linux commands for copying contents to the clipboard. I don't handle reading files. You'll have to do that yourself. I simply pipe whatever contents you provide to the appropriate command based on the operating system reported by php_uname().
Installation
composer require edgrosvenor/php-clipboard
Usage
<?php use Edgrosvenor\PHPClipboard\Clipboard; class CopyStuff { public function copyMyName($name = 'Ed Grosvenor') { $clipboard = new Clipboard(); $clipboard->copy($name); // 'Ed Grosvenor' has been copied to your clipboard } }