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