I have 10 elements of Array, how can i remove 5 array
element, with single function.

Answers were Sorted based on User's Feedback



I have 10 elements of Array, how can i remove 5 array element, with single function...

Answer / shaik abdul raheem

<?php
$a[0]='a';
$a[1]='b';
$a[2]='c';
$a[3]='d';
$a[4]='f';
$a[5]='g';
$a[6]='h';
$a[7]='i';
unset($a[4]);
for($b=0;$b<=count($a);$b++)
{
echo $a[$b]."<br>";
}
?>

Is This Answer Correct ?    4 Yes 5 No

I have 10 elements of Array, how can i remove 5 array element, with single function...

Answer / dhir

<?php
$a[0]='a';
$a[1]='b';
$a[2]='c';
$a[3]='d';
$a[4]='f';
$a[5]='g';
$a[6]='h';
$a[7]='i';

for($b=0;$b<=4;$b++)
{
$a=shift($a[$b]);
}
?>

Is This Answer Correct ?    1 Yes 3 No

I have 10 elements of Array, how can i remove 5 array element, with single function...

Answer / guest

using "limit 1 5"

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More PHP Interview Questions

How do you check if an arraylist is empty?

0 Answers  


What is different types of visibility?

0 Answers  


What is the sign to start variables in PHP?

0 Answers  


Is null function in php?

0 Answers  


Does jwt protect against csrf?

0 Answers  






Explain php split() function.

0 Answers  


What is php explain how php works?

0 Answers  


How do you develop your own PHP extension ?

2 Answers  


what are the basic steps to installation php4+mysql4+phpmyadmin on IIS web server?. Pls write the complete steps.

2 Answers  


Which function you can use in php to open a file for reading or writing or for both?

0 Answers  


What are the popular frameworks in php?

0 Answers  


What is polymorphism with example in php?

0 Answers  


Categories