Files
test1/BusinessLogic/RemoveTodoList.php
2023-04-12 11:55:10 +07:00

22 lines
343 B
PHP

<?php
/**
* Menghapus todo di list
*/
function removeTodoList(int $number): bool
{
global $todoList;
if ($number > sizeof($todoList)) {
return false;
}
for ($i = $number; $i < sizeof($todoList); $i++) {
$todoList[$i] = $todoList[$i + 1];
}
unset($todoList[sizeof($todoList)]);
return true;
}