Fix array_fill example (#8138)

Fix: Use correct parameter name "count" instead of "num" in array_fill()

Updated the array_fill() function to use "count" as the second parameter, aligning with the official PHP documentation.
pull/8147/head
DombleGames 2 months ago committed by GitHub
parent ec8a0917c1
commit 6f1087981c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      src/data/roadmaps/php/content/named-arguments@RkNjYva8o_jXp9suz5YdG.md

@ -4,11 +4,11 @@ Named arguments in PHP, introduced with PHP 8.0, allow you to specify the values
```php
<?php
$a = array_fill(start_index: 0, num: 100, value: 50);
$a = array_fill(start_index: 0, count: 100, value: 50);
```
In this code snippet, the parameters are passed by their names ('start_index', 'num', 'value'), not by their order in the function definition.
In this code snippet, the parameters are passed by their names ('start_index', 'count', 'value'), not by their order in the function definition.
Visit the following resources to learn more:
- [@official@Named Arguments](https://www.php.net/manual/en/functions.arguments.php#functions.named-arguments)
- [@official@Named Arguments](https://www.php.net/manual/en/functions.arguments.php#functions.named-arguments)

Loading…
Cancel
Save