22 lines
343 B
PHP
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;
|
|
}
|