PHP code example of xitoid / nezuko
1. Go to this page and download the library: Download xitoid/nezuko library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
xitoid / nezuko example snippets
$nezuko = new Nezuko();
$angka = round(0, 9);
$nezuko -> tambahList($angka);
$nezuko -> lihatKata();
$nezuko -> tambahItemAkhir();
$target = "abcde";
$nezuko = new Nezuko\GenerateKata();
while($kataDitemukan != true)
{
$kata = $nezuko -> lihatKata();
if($kata == $target)
{
$kataDitemukan == true;
}
$nezuko -> tambahItemAkhir();
}
echo "Kata {$kata} ditemukan";