Skip to content

Commit d58ee65

Browse files
Update introduction.md
1 parent 440362b commit d58ee65

1 file changed

Lines changed: 1 addition & 12 deletions

File tree

exercises/concept/language-list/.docs/introduction.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,7 @@ $prime_numbers[] = 11; // array now contains [2, 3, 5, 7, 11]
3535

3636
### Performing Actions with Arrays
3737

38-
PHP provides functions you can use to modify arrays and work with items in arrays. Below are some of the frequently used ones:
39-
40-
```php
41-
$prime_numbers = [2, 3, 5, 6];
42-
43-
count($prime_numbers); // 4
44-
45-
array_shift($prime_numbers); // array now contains [3, 5, 6]
46-
47-
array_pop($prime_numbers); // array now contains [3, 5]
48-
49-
```
38+
PHP provides functions you can use to modify arrays and work with items in arrays. The PHP documentation offers detailed information array functions in the [array](https://www.php.net/manual/en/language.types.array.php) documentation.
5039

5140
## Variable-Length Arguments
5241

0 commit comments

Comments
 (0)