Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

What is an example of a variable?

0 Answers  


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

0 Answers  


Differences between get and post methods?

0 Answers  


Explain the advantages of using PHP?

0 Answers  


How to read a file in php?

0 Answers  


Write a program to find the factorial of a number in php?

0 Answers  


What is a base url?

0 Answers  


What is the difference between array_map () and array_shift ()?

0 Answers  


What is empty php?

0 Answers  


What are the encryption functions available in PHP?

0 Answers  


"mysql_fetch_row — Get a result row as an enumerated array",this sentence comes from the PHP offical manual.However ,i can not understand the words "enumerated array".I need some help.Thanks a lot to everyone that reply.

0 Answers  


Differences between get, post and request methods ?

0 Answers  


Categories