frnxstd/sudoxu
Composer 安装命令:
composer require frnxstd/sudoxu
包简介
Sudoxu is a simple sudoku creator class
README 文档
README
Sudoxu is a light and easy to use PHP sudoku genarator class. It's able to create up to 6^2sq sudokus easily.
Installation
Run the command in your project folder:
composer require frnxstd/sudoxu
Example usage
You can create it as ARRAY, JSON or SERIALIZED.
<?php require_once __DIR__ . '/../vendor/autoload.php'; // Autoload files using Composer autoload use Sudoxu\Sudoku; /** @var Sudoku $Sudoku */ $Sudoku = new Sudoku(); // Example 1 Returns JSON $json = $Sudoku->generate('json'); // Example 2 Returns an array $array = $Sudoku->generate('array'); // Example 3 Returns Serialized $serialize = $Sudoku->generate('serialize');
统计信息
- 总下载量: 13
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-01-25