I have 10 elements of Array, how can i remove 5 array
element, with single function.
Answers were Sorted based on User's Feedback
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 |
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 |
What are some new features introduced in php7?
Write a program to get lcm of two numbers using php?
Explain some most commonly use string functions in php?
What is mvc? Why its been used?
How can we access the data sent through the url with the post method?
Describe PHP error and logging information?
What is the use of friend function?
What are the different tables(engine) present in mysql, which one is default?
What are the differences between require and include, include_once?
Explain preg_Match and preg_replace?
Which escape sequences can be used in single quoted strings in php?
What does php do?