mirror of
https://github.com/codeguy/php-the-right-way.git
synced 2025-08-06 05:57:26 +02:00
19 lines
681 B
Markdown
19 lines
681 B
Markdown
---
|
|
title: Standard PHP Library
|
|
isChild: true
|
|
anchor: standard_php_library
|
|
---
|
|
|
|
## Standard PHP Library {#standard_php_library_title}
|
|
|
|
The Standard PHP Library (SPL) is packaged with PHP and provides a collection of classes and interfaces. It is made up
|
|
primarily of commonly needed datastructure classes (stack, queue, heap, and so on), and iterators which can traverse
|
|
over these datastructures or your own classes which implement SPL interfaces.
|
|
|
|
* [Read about the SPL][spl]
|
|
* [SPL video course on LinkedIn.com (paid)][linkedin]
|
|
|
|
|
|
[spl]: https://www.php.net/book.spl
|
|
[linkedin]: https://www.linkedin.com/learning/learning-the-standard-php-library?trk=lynda_redirect_learning
|