shortdark/lightswitch
Composer 安装命令:
composer require shortdark/lightswitch
包简介
Lightswitch composer package generates customized arrays of random numbers.
关键字:
README 文档
README
Lightswitch creates an array of unique integers when you specify the lowest integer, the highest integer and the volume of integers you require.
Installation
Install the latest version with
$ composer require shortdark/lightswitch
Basic Usage
<?php require_once 'vendor/autoload.php'; $test = new Shortdark\Lightswitch(); // All you can do at the moment is to press the lightswitch // press($lowest_integer, $highest_integer, $how_many_integers) $result = $test->press(1,49,7); // You can also specify two different rules, for example, // 5 integers between 1 and 49, then 2 integers between 1 and 9 $result = $test->press(1,49,5,1,9,2); // The result will be an array of integers var_dump($result);
Basic Usage in a Laravel Controller
<?php use App\Http\Controllers\Controller; use Shortdark\Lightswitch; class MyController extends Controller { public function index(Lightswitch $light) { $result = $light->press(1,49,5,1,9,2); return view('index', compact('result')); } }
Then, as $result is an array, to get a representation of the array you could have something like the following in the index.blade.php.
{{ json_encode($result) }}
Author
Neil Ludlow - neil@shortdark.net - https://twitter.com/shortdark
统计信息
- 总下载量: 31
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-11-22