Numeric Array
Sample Program
Output:- Rahul
Array Function
Array() function is used to create an array.
Syntax
$array_name = array(“value1″,”value2″,”value3”,……..);
For Example
$name = array(“Sushant”,”Rahul”,”Sameer”,”sujeet”);
Note:- By Default, array starts with index 0.
Sample Program
Output
Double Array Operator
The => operator lets you create key/index – value pairs in the array. The item on the left of the => is the key/index and the item on the right is the value.
For Example:- $name = array(1=>”Sushant”, 3=>”Rahul”, 7=>”Sujeet”, 12=>”Amit”);
In the Above Example, we assigned the index of the array’s. See Below,
$name[1] = Sushant,
$name[3] = Rahul,
$name[7] = Sujeet,
$name[12] = Amit,
Note:- When we assign a value in first array and left others, then next array will automatically assign next value of the previous array.
- What is On-Page Optimization and Off-page Optimization - March 14, 2024
- [SOLVED] Flutter : PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null, null) - December 7, 2021
- [Solved] Flutter : Error: The getter ‘subhead’ isn’t defined for the class ‘TextTheme’ from package:flutter/src/material/text_theme.dart’ – searchable_dropdown - December 6, 2021