Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 302 Bytes

File metadata and controls

22 lines (15 loc) · 302 Bytes

FEN load

just use $chess->load('fen string');

example:

<?php
use \Ryanhs\Chess\Chess;

$chess = new Chess;
$chess->load('some fen string');

or maybe you want load it in the first place ? (constructor)

<?php
use \Ryanhs\Chess\Chess;

$chess = new Chess('some fen string');