Adding an element to PHP array and removing an element from php array is very simple. PHP has in-built function to perform this. A function array_push() is used to add an element to PHP array
Creating an array:
$custom_array = ['a','b','c'];
or
$custom_array = array('a','b','c');
Add an element to an array:
In php array_push function used to add an element to array. Syntax of array_push is
array_push(array, var);
If you want to add 'd' to $custom_array
$element='d';
array_push($custom_array , $element);
Result is:
Array ( [0] => a [1] => b [2] => c [3] => d )
Remove an element from array:
If you want to remove 'b' from $custom_array use unset function:
unset($custom_array [1]);
Result is
Array ( [0] => a [2] => c )
Salman Khan has been advised by the Bishnoi community of Rajasthan to apologize in the blackbuck poaching case - but will the matter end if Salman Khan does so? And will Salman Khan want to take this path?
Ratan Tata will be cremated with full state honours after passing away on Wednesday at the age of 86 in a Mumbai hospital. In addition, Eknath Shinde, the chief minister of Maharashtra, declared a day of mourning for the renowned philanthropist and industrialist on Thursday.
Ratan Tata, one of the most respected business leaders in India, has left an indelible mark on the nationβs economy through his visionary leadership and values-driven approach. Born on December 28, 1937, into the Tata family, Ratan Tata is the great-grandson of Jamsetji Tata, the founder of the Tata Group, one of Indiaβs oldest and most prestigious conglomerates. Over the decades, Ratan Tata has taken the group to unprecedented heights, earning admiration globally for his business acumen and ethical leadership.
The latest news about the 2024 Ballon d'Or nominees. Updates and details on the top football stars. The most current information on football awards at Sportxeber.az.