Answers for "remove arrayindex php"

PHP
1

php remove element from array

$arr = array('a' => 1, 'b' => 2, 'c' => 3);
unset($arr['b']);

// RESULT: array('a' => 1, 'c' => 3)

$arr = array(1, 2, 3);
array_splice($arr, 1, 1);

// RESULT: array(0 => 1, 1 => 3)
Posted by: Guest on March-04-2020
1

remove index.php

#in apache mod rewrite is disabled
a2enmod rewrite
Posted by: Guest on August-06-2021

Browse Popular Code Answers by Language