Difference between array() and []

manomite

Adeyeye George

Posted on June 6, 2024

Difference between array() and []

Image description

In PHP, array() and [] are both used to create arrays, but they are slightly different.

array() is the traditional way to create an array in PHP, and it's a language construct. It can be used to create both indexed and associative arrays.

Example:

$fruits = array('apple', 'banana', 'orange');
Enter fullscreen mode Exit fullscreen mode

On the other hand, [] is a shorthand syntax for creating arrays, introduced in PHP 5.4. It's an alternative to array() and is used to create arrays in a more concise way.

$fruits = ['apple', 'banana', 'orange'];
Enter fullscreen mode Exit fullscreen mode

Both methods can be used interchangeably, but [] is generally preferred for its brevity and readability.

💖 💪 🙅 🚩
manomite
Adeyeye George

Posted on June 6, 2024

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related