Update
This commit is contained in:
@@ -40,7 +40,7 @@ function maskWord($word) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getAllWords() {
|
function getAllWords() {
|
||||||
return array(include("words-array.php"));
|
return include("words-array.php");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -14,9 +14,9 @@ echo <<<END
|
|||||||
</tr>
|
</tr>
|
||||||
END;
|
END;
|
||||||
|
|
||||||
foreach ((array)$arr as $a) {
|
for ($i = 0; $i < count($arr); $i++) {
|
||||||
$transformed = transformWord($a);
|
$transformed = transformWord($arr[$i]);
|
||||||
$mask = implode(" ", maskWord($a));
|
$mask = implode(" ", maskWord($arr[$i]));
|
||||||
echo <<<END
|
echo <<<END
|
||||||
<tr>
|
<tr>
|
||||||
<td>$a</td>
|
<td>$a</td>
|
||||||
|
Reference in New Issue
Block a user