SlideShare a Scribd company logo
Using SPL Tools in Your Code

  OTHERWISE KNOWN AS SPL IN THE WILD
If you don’t know what
SPL is or have never
used SPL features, this
talk might go fast for
you.

Feedback is good!
Why SPL?
What SPL?         tandard HP ibrary
How SPL?    A library of standard interfaces,
             classes, and functions designed
             to solve common programming
                problems and allow engine
                       overloading
But isn’t SPL an Extension?

—  SPL is an extension
—  SPL is a core extension
—  SPL cannot be built shared
—  SPL should not be turned off
—  SPL is present in PHP since 5.0 (almost 6 years ago)
—  As of 5.3, SPL cannot be turned off


 If you don’t have SPL, whoever built your PHP is an
                         idiot.
Autoload

DON’T LET FRIENDS USE __AUTOLOAD
Autoload Stack err Queue

—  spl_autoload_register()
—  spl_autoload_unregister()
—  spl_autoload_call()
—  spl_autoload_functions()




—  https://github.com/hyla/hyla/blob/
 a9f445115b942865241653dce02aa029c7453f41/
 kohana/application/bootstrap.php
Beware the Weirdness

—  spl_autoload()
    ¡  lowercase

    ¡  relative paths

    ¡  namespace aware

—  spl_autoload_extensions()
    ¡  include the .

    ¡  no spaces in between

    ¡  comma separated string
Exceptions

WHAT WENT WRONG WHERE
Exception Classes



                  LogicException
BadFunctionCall     Domain     InvalidArgument    Length     OutofRange
   Exception       Exception      Exception      Exception    Exception




BadMethodCall
  Exception
Exception Classes



                    RuntimeException




                                                  Unexpected
OutofBounds   Overflow     Range      Underflow      Value
 Exception    Exception   Exception   Exception
                                                   Exception
Marker Interface

—  Note that the ability to “nest” exceptions in 5.3
    makes using this stuff far more practical
—  Component level interface as the “marker” or
    “domain” for all exceptions belonging to a library or
    package
—  Specific types of exceptions for code that tell what
    happened
Arrays as Objects

I’M AN ARRAY, WELL KIND OF BUT
     I’M AN OBJECT, REALLY!
    I AM INCREDIBLY USEFUL
The use cases are infinite

—  https://github.com/ooyes/Microweber/blob/
  d4d64cb563b73fa47db5e1e61f913d426d29154c/
  system/application/stats/libs/Zend/Registry.php

—  Gotchas:
    ¡  &offsetGet

    ¡  Quite buggy in 5.2, much more stable in 5.3

    ¡  Can’t use all array functions

    ¡  Serialize, unserialize, sleep, wakeup issues
ArrayAccess, ArrayObject, Array

—  Lots of people want arrayaccess or arrayobject to
    work like an array
—  ArrayObject might be feasible and in fact some of
    these can already be used
—  What about sorting? Merging? Other behavior
Files

YES PHP HAS A FILE OBJECT
 WELL ACTUALLY IT HAS 3
      SPLFILEINFO
     SPLFILEOBJECT
   SPLTEMPFILEOBJECT
Practical Uses

—  https://github.com/fqqdk/phpcmc/blob/
 c3b2450ff6f0293f3de0525745f4f5d551181d0d/src/
 jabbar/PearXmlBuilder.php

—  https://github.com/horde/horde/blob/
 a49d5c901d184dd8581ada0829ad33db053fd07b/
 framework/Support/lib/Horde/Support/
 StringStream.php
Interfaces

MAGIC AND ORGANIZATION
PHP Interfaces

—  Traversable
—  Iterator
—  IteratorAggregate
—  ArrayAccess
—  Serializable


—  And in 5.4 JsonSerializable
Countable

—  Interface meaning “you can count me”
—  Can be put on any class
—  Makes count() magical
—  Note this is NOT the same as iterator_count()
Iterator Interfaces

—  Outer Iterator
—  Inner Iterator
—  Seekable Iterator


—  For examples, pay attention to what all the iterator
  classes we’ll talk about implement
SplSubject SplObserver

—  Are you implementing the observer pattern in your
    code?
—  Do you intend to have other people use your code/
    library in some way?
—  Are you implementing something LIKE the observer
    pattern?

—  http://www.a-scripts.com/object-oriented-php/
 2009/02/21/the-observer-pattern/
Iterators

TAKE A DRINK …
Why Iterators?

—  Readable
—  Easy to understand
—  Testable
—  Easy to refactor
—  Consistent usage
—  Easily add functionality
—  Can be extended
—  Can be chained
Meet the Iterator Interface
So how is it different?

$ar= array();                 $it = new Iterator;



—  reset($ar)                —  $it->rewind()
—  !is_null(key($ar))        —  $it->valid()
—  current($ar)              —  $it->key()
—  key($ar)                  —  $it->current()
—  next($ar)                 —  $it->next()
FilterIterator

—  Abstract Class
—  Has one method that must be implemented – accept
    – which should return true or false
—  Highly useful for many types of iteration
—  https://github.com/sebastianbergmann/php-file-
    iterator/blob/master/File/Iterator.php


      FilterIterator   OuterIterator   Iterator   Traversable
IteratorIterator

—  Regular Class
—  Stick in something that implements traversable
—  Instant Iterator
—  https://github.com/mediaslave/phrails/blob/
  6d40d1584c0202668b071c0fd4b53e060b6724c7/
  framework/db/ResultSet.php


      IteratorIterator    OuterIterator   Iterator   Traversable
ArrayIterator

—  Regular Class
—  Iterates an array – OR the public properties of an
    object! (neat trick – dirty trick)
—  https://github.com/codealchemy/ACL/blob/
    d1729ec7c3aee427fb57da9c2f2817503aa507b5/lib/
    CODEAlchemy/Component/ACL/NodeList.php



                                                              ArrayAccess and
  ArrayIterator   SeekableIterator   Iterator   Traversable    Countable too!
RecursiveIteratorIterator

—  Regular Class
—  Like IteratorIterator only recursive to boot


—  https://github.com/Xosofox/propelVendor/blob/
 85986d1ef52167f3044d69be142c72895174bac1/
 propel/config/PropelConfigurationIterator.php


      RecursiveIteratorIterator   OuterIterator   Iterator   Traversable
ParentIterator

—  Regular Class
—  Filter out stuff without children


—  https://github.com/ebihara/php-src/blob/
 b62203bf12ea1c2b63a0de996a236f43b2ac100c/ext/
 phar/phar/directorygraphiterator.inc


      ParentIterator   OuterIterator    Iterator   Traversable
LimitIterator

—  Regular Class
—  Like mysql’s limit – pick your range and offset and
 foreach away!

—  https://github.com/mintao/zf-mini/blob/
 9efff5f8b25383ef2cdf91b0e4301d90965c4fb8/
 Paginator/SerializableLimitIterator.php

      LimitIterator   OuterIterator   Iterator   Traversable
CachingIterator

—  Regular Class
—  Manages another iterator by checking whether it has
    more elements each time using a hasNext() method
—  https://github.com/shimondoodkin/
    node_spreadsheet/blob/
    e16660cebd2b65abba1a8f5db4449285fa4c3cc6/
    orig/Classes/PHPExcel/Worksheet/RowIterator.php

      CachingIterator    OuterIterator   Iterator   Traversable
RecursiveCachingIterator

—  Regular Class
—  Just like caching iterator only – believe it or not –
    recursive!
—  https://github.com/codedor/cakephp_navigation/
    blob/
    121b3f0594ad0e42a873f65d45583c5ca85343c3/
    views/helpers/menu.php
  RecursiveCachingIterator    CachingIterator   OuterIterator   Iterator   Traversable
DirectoryIterator

—  Regular Class
—  Makes going through directories a snap
—  isDot, isFile – I love you


—  https://github.com/quentinhill/curator/blob/
  44ec76ca9c3d749028b5d950ab78c7dc480dee83/
  Curator/Project.php

                            SplFileInfo
      DirectoryIterator                   Iterator   Traversable
                             (extends)
RecursiveDirectoryIterator

—  Regular Class
—  Like, do it again… and again… and again… and…




—  https://github.com/gjarkko/Track-o-Matic/blob/
 ce506e71326805fe24e38b4262328648cad9a50e/
 server/classes/Tools.php

      DirectoryIterator
          (extends)       RecursiveIterator   Iterator   Traversable
RegexIterator

—  Regular Class
—  Filter an iterator by a regex
—  Pick how you want it to match


—  https://github.com/drm/Sprig/blob/
  b57bee029ce3d4317f90f38de2b643e3b6d94c96/lib/
  Sprig/Extension/Smarty/PluginLoader/Iterator.php

       FilterIterator   IteratorIterator
                                           Iterator   Traversable
         (extends)         (extends)
Datastructures

             NEW WAYS OF MANAGING DATA




http://matthewturland.com/2010/05/20/new-spl-features-in-php-5-3/
DoublyLinkedLists – CS Lesson

—  ordered collection of values
—  linked to each element before it
—  linked to each element after it
—  “doubly linked”




—  PHP datastructure – a php object with a
 doublylinkedlist stored inside it
SplDoublyLinkedList

—  Don’t use this
—  Yes, that’s a terrible thing to say – but this is really
    nothing more then a “base class” with little to
    recommend on its own
—  Has a doublylinkedlist from C underneath instead of
    a hashtable – if you know what that means you may
    find a real use for this (I have not)
SplStack

—  Data is in LIFO


—  Anything you need to iterate a lot
—  Even cooler? Turn on the mode that will autodelete each
  item as you process it

—  Any Queue you need to push stuff onto and deal with in
  LIFO order

—  https://github.com/CHH/Spark2/blob/
  a01607a2480bd6a9b8251e56579fe84869683925/lib/
  Spark/App.php
SplQueue

—  Data is in FIFO

—  Anything you need to iterate a lot
—  Even cooler? Turn on the mode that will autodelete each
  item as you process it

—  Any Queue you need to push stuff onto and deal with in
  LIFO order

—  https://github.com/composer/composer/blob/
  52565a593529048a631110879c76b46bbf76ba82/src/
  Composer/DependencyResolver/Solver.php
Heap – CS Lesson

—  comparison function used to compare the new
    element to other elements
—  element is placed according to functions return value
—  underlying algorithm does it with minimal
    comparisons



—  PHP datastructure – a php object with a heap stored
 inside it
Using SplHeap

—  This is an abstract class
—  You need to compare elements




—  https://github.com/ckwalsh/LibSprite
SplMinHeap, SplMaxHeap

—  These are concrete heap implementations, designed
 to grab the lowest possible value out, or the highest
 possible




—  https://github.com/Wordi/LooPHP/blob/
 fce3947bc27cdd4ae2109e62f7ad58ed68af7862/
 LooPHP/EventLoop.php
SplPriorityQueue

—  Uses heap internally
—  Is non-deterministic when identical priorities are
 used (bug bug bug….)




—  https://github.com/ss23/DeBot/blob/
 dced95faaf5b5284057d0824151bae4a95866305/
 core/SplFIFOPriorityQueue.php
SplFixedArray

—  You have a large amount of data, you know the final
    size, you need to stick it into an array
—  You’re not going to expand it past the final size
—  This is not a small amount of data
—  You might need it in non-sequential order but can
    handle having only integers for keys

—  https://github.com/cboden/gClient/blob/
 429b27a54db5b4c1d30bbdc83566678c03b96bea/
 lib/gClient/Calendar/Calendar.php
SplObjectStorage

—  This can be used two ways
    ¡  Objects can be keys in an array (with two values)

    ¡  As a Set (with one value)




—  https://github.com/greggles/
  epm_project_management/blob/
  50b904333647216ec678fd922f4ac53dbf0e53ee/
  QueryPath/CssEventHandler.php
What do you want to see in SPL?


—  More standard interface?
—  More datastructures?
    ¡  trees?

    ¡  graphs?

—  More iterators? really? more?
Get Involved

—  http://edit.php.net
—  Blog posts
—  Articles
—  Use SPL in the wild
Contact Me

—  http://emsmith.net
—  http://joind.in/3791
—  auroraeosrose@gmail.com
—  IRC – freenode – auroraeosrose
—  #php-gtk #coapp and others

More Related Content

What's hot (20)

PDF
C++ boot camp part 1/2
Jesse Talavera-Greenberg
 
PDF
Reading Other Peoples Code (Web Rebels 2018)
Patricia Aas
 
PDF
Metaprogramação em Python: Decorators e Metaclasses
Felipe Volpone
 
PDF
Ida python intro
小静 安
 
PPT
Python - Introduction
stn_tkiller
 
PDF
Learning Python from Data
Mosky Liu
 
PDF
__proto__-and-prototype
Lee zhiye
 
PDF
Write code that writes code!
Jason Feinstein
 
PDF
Effective Scala (SoftShake 2013)
mircodotta
 
PDF
Learn To Test Like A Grumpy Programmer - 3 hour workshop
chartjes
 
PDF
Introduction to Writing Readable and Maintainable Perl (YAPC::EU 2011 Version)
Alex Balhatchet
 
PDF
Code with style
Clayton Parker
 
PDF
Developing A Procedural Language For Postgre Sql
Joshua Drake
 
PDF
Wait, IPython can do that?
Sebastian Witowski
 
ODP
Benchmarking the Efficiency of Your Tools
Marian Marinov
 
PDF
Wait, IPython can do that?! (30 minutes)
Sebastian Witowski
 
PDF
Joys & frustrations of putting 34,000 lines of Haskell into production (at Va...
Saurabh Nanda
 
PPTX
PHP 7 Crash Course - php[world] 2015
Colin O'Dell
 
PDF
Unit Testing Lots of Perl
Workhorse Computing
 
PDF
F# and Reactive Programming for iOS
Brad Pillow
 
C++ boot camp part 1/2
Jesse Talavera-Greenberg
 
Reading Other Peoples Code (Web Rebels 2018)
Patricia Aas
 
Metaprogramação em Python: Decorators e Metaclasses
Felipe Volpone
 
Ida python intro
小静 安
 
Python - Introduction
stn_tkiller
 
Learning Python from Data
Mosky Liu
 
__proto__-and-prototype
Lee zhiye
 
Write code that writes code!
Jason Feinstein
 
Effective Scala (SoftShake 2013)
mircodotta
 
Learn To Test Like A Grumpy Programmer - 3 hour workshop
chartjes
 
Introduction to Writing Readable and Maintainable Perl (YAPC::EU 2011 Version)
Alex Balhatchet
 
Code with style
Clayton Parker
 
Developing A Procedural Language For Postgre Sql
Joshua Drake
 
Wait, IPython can do that?
Sebastian Witowski
 
Benchmarking the Efficiency of Your Tools
Marian Marinov
 
Wait, IPython can do that?! (30 minutes)
Sebastian Witowski
 
Joys & frustrations of putting 34,000 lines of Haskell into production (at Va...
Saurabh Nanda
 
PHP 7 Crash Course - php[world] 2015
Colin O'Dell
 
Unit Testing Lots of Perl
Workhorse Computing
 
F# and Reactive Programming for iOS
Brad Pillow
 

Similar to Using spl tools in your code (20)

PDF
Spl in the wild
Elizabeth Smith
 
PDF
SPL to the Rescue - Tek 09
Elizabeth Smith
 
PPTX
Spl to the Rescue - Zendcon 09
Elizabeth Smith
 
KEY
SPL, not a bridge too far
Michelangelo van Dam
 
PDF
SPL Primer
Lorna Mitchell
 
PDF
SPL: The Missing Link in Development
jsmith92
 
KEY
Spl Not A Bridge Too Far phpNW09
Michelangelo van Dam
 
PPTX
Looping the Loop with SPL Iterators
Mark Baker
 
ODP
Intro to The PHP SPL
Chris Tankersley
 
PDF
PHP 5
Rafael Corral
 
PPTX
Looping the Loop with SPL Iterators
Mark Baker
 
PDF
PHP 5.3 Overview
jsmith92
 
PDF
Intermediate OOP in PHP
David Stockton
 
PDF
Iterators, ArrayAccess & Countable (Oh My!) - Madison PHP 2014
Sandy Smith
 
PDF
Modern php
Charles Anderson
 
ODP
What's new, what's hot in PHP 5.3
Jeremy Coates
 
PDF
Decoupling Objects With Standard Interfaces
Thomas Weinert
 
PDF
Intermediate OOP in PHP
David Stockton
 
PDF
Practical PHP 5.3
Nate Abele
 
PDF
Advanced Php - Macq Electronique 2010
Michelangelo van Dam
 
Spl in the wild
Elizabeth Smith
 
SPL to the Rescue - Tek 09
Elizabeth Smith
 
Spl to the Rescue - Zendcon 09
Elizabeth Smith
 
SPL, not a bridge too far
Michelangelo van Dam
 
SPL Primer
Lorna Mitchell
 
SPL: The Missing Link in Development
jsmith92
 
Spl Not A Bridge Too Far phpNW09
Michelangelo van Dam
 
Looping the Loop with SPL Iterators
Mark Baker
 
Intro to The PHP SPL
Chris Tankersley
 
Looping the Loop with SPL Iterators
Mark Baker
 
PHP 5.3 Overview
jsmith92
 
Intermediate OOP in PHP
David Stockton
 
Iterators, ArrayAccess & Countable (Oh My!) - Madison PHP 2014
Sandy Smith
 
Modern php
Charles Anderson
 
What's new, what's hot in PHP 5.3
Jeremy Coates
 
Decoupling Objects With Standard Interfaces
Thomas Weinert
 
Intermediate OOP in PHP
David Stockton
 
Practical PHP 5.3
Nate Abele
 
Advanced Php - Macq Electronique 2010
Michelangelo van Dam
 
Ad

More from Elizabeth Smith (20)

PPTX
Welcome to the internet
Elizabeth Smith
 
PPTX
Database theory and modeling
Elizabeth Smith
 
PPTX
Taming the resource tiger
Elizabeth Smith
 
PPTX
Modern sql
Elizabeth Smith
 
PPTX
Php extensions
Elizabeth Smith
 
PPTX
Taming the resource tiger
Elizabeth Smith
 
PPTX
Php internal architecture
Elizabeth Smith
 
PPTX
Taming the tiger - pnwphp
Elizabeth Smith
 
PPTX
Php extensions
Elizabeth Smith
 
PPTX
Php’s guts
Elizabeth Smith
 
PPTX
Lexing and parsing
Elizabeth Smith
 
PPT
Hacking with hhvm
Elizabeth Smith
 
PPTX
Security is not a feature
Elizabeth Smith
 
PPTX
Using unicode with php
Elizabeth Smith
 
PPTX
Mentoring developers-php benelux-2014
Elizabeth Smith
 
PPTX
Using unicode with php
Elizabeth Smith
 
PPTX
Socket programming with php
Elizabeth Smith
 
PPTX
Mentoring developers
Elizabeth Smith
 
PPTX
Do the mentor thing
Elizabeth Smith
 
PPTX
Mentoring developers - Zendcon 2012
Elizabeth Smith
 
Welcome to the internet
Elizabeth Smith
 
Database theory and modeling
Elizabeth Smith
 
Taming the resource tiger
Elizabeth Smith
 
Modern sql
Elizabeth Smith
 
Php extensions
Elizabeth Smith
 
Taming the resource tiger
Elizabeth Smith
 
Php internal architecture
Elizabeth Smith
 
Taming the tiger - pnwphp
Elizabeth Smith
 
Php extensions
Elizabeth Smith
 
Php’s guts
Elizabeth Smith
 
Lexing and parsing
Elizabeth Smith
 
Hacking with hhvm
Elizabeth Smith
 
Security is not a feature
Elizabeth Smith
 
Using unicode with php
Elizabeth Smith
 
Mentoring developers-php benelux-2014
Elizabeth Smith
 
Using unicode with php
Elizabeth Smith
 
Socket programming with php
Elizabeth Smith
 
Mentoring developers
Elizabeth Smith
 
Do the mentor thing
Elizabeth Smith
 
Mentoring developers - Zendcon 2012
Elizabeth Smith
 
Ad

Recently uploaded (20)

PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PPT
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
PPTX
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
PDF
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PPTX
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
“Squinting Vision Pipelines: Detecting and Correcting Errors in Vision Models...
Edge AI and Vision Alliance
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Ericsson LTE presentation SEMINAR 2010.ppt
npat3
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
The Project Compass - GDG on Campus MSIT
dscmsitkol
 
Kit-Works Team Study_20250627_한달만에만든사내서비스키링(양다윗).pdf
Wonjun Hwang
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Seamless Tech Experiences Showcasing Cross-Platform App Design.pptx
presentifyai
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 

Using spl tools in your code

  • 1. Using SPL Tools in Your Code OTHERWISE KNOWN AS SPL IN THE WILD
  • 2. If you don’t know what SPL is or have never used SPL features, this talk might go fast for you. Feedback is good!
  • 3. Why SPL? What SPL? tandard HP ibrary How SPL? A library of standard interfaces, classes, and functions designed to solve common programming problems and allow engine overloading
  • 4. But isn’t SPL an Extension? —  SPL is an extension —  SPL is a core extension —  SPL cannot be built shared —  SPL should not be turned off —  SPL is present in PHP since 5.0 (almost 6 years ago) —  As of 5.3, SPL cannot be turned off If you don’t have SPL, whoever built your PHP is an idiot.
  • 6. Autoload Stack err Queue —  spl_autoload_register() —  spl_autoload_unregister() —  spl_autoload_call() —  spl_autoload_functions() —  https://github.com/hyla/hyla/blob/ a9f445115b942865241653dce02aa029c7453f41/ kohana/application/bootstrap.php
  • 7. Beware the Weirdness —  spl_autoload() ¡  lowercase ¡  relative paths ¡  namespace aware —  spl_autoload_extensions() ¡  include the . ¡  no spaces in between ¡  comma separated string
  • 9. Exception Classes LogicException BadFunctionCall Domain InvalidArgument Length OutofRange Exception Exception Exception Exception Exception BadMethodCall Exception
  • 10. Exception Classes RuntimeException Unexpected OutofBounds Overflow Range Underflow Value Exception Exception Exception Exception Exception
  • 11. Marker Interface —  Note that the ability to “nest” exceptions in 5.3 makes using this stuff far more practical —  Component level interface as the “marker” or “domain” for all exceptions belonging to a library or package —  Specific types of exceptions for code that tell what happened
  • 12. Arrays as Objects I’M AN ARRAY, WELL KIND OF BUT I’M AN OBJECT, REALLY! I AM INCREDIBLY USEFUL
  • 13. The use cases are infinite —  https://github.com/ooyes/Microweber/blob/ d4d64cb563b73fa47db5e1e61f913d426d29154c/ system/application/stats/libs/Zend/Registry.php —  Gotchas: ¡  &offsetGet ¡  Quite buggy in 5.2, much more stable in 5.3 ¡  Can’t use all array functions ¡  Serialize, unserialize, sleep, wakeup issues
  • 14. ArrayAccess, ArrayObject, Array —  Lots of people want arrayaccess or arrayobject to work like an array —  ArrayObject might be feasible and in fact some of these can already be used —  What about sorting? Merging? Other behavior
  • 15. Files YES PHP HAS A FILE OBJECT WELL ACTUALLY IT HAS 3 SPLFILEINFO SPLFILEOBJECT SPLTEMPFILEOBJECT
  • 16. Practical Uses —  https://github.com/fqqdk/phpcmc/blob/ c3b2450ff6f0293f3de0525745f4f5d551181d0d/src/ jabbar/PearXmlBuilder.php —  https://github.com/horde/horde/blob/ a49d5c901d184dd8581ada0829ad33db053fd07b/ framework/Support/lib/Horde/Support/ StringStream.php
  • 18. PHP Interfaces —  Traversable —  Iterator —  IteratorAggregate —  ArrayAccess —  Serializable —  And in 5.4 JsonSerializable
  • 19. Countable —  Interface meaning “you can count me” —  Can be put on any class —  Makes count() magical —  Note this is NOT the same as iterator_count()
  • 20. Iterator Interfaces —  Outer Iterator —  Inner Iterator —  Seekable Iterator —  For examples, pay attention to what all the iterator classes we’ll talk about implement
  • 21. SplSubject SplObserver —  Are you implementing the observer pattern in your code? —  Do you intend to have other people use your code/ library in some way? —  Are you implementing something LIKE the observer pattern? —  http://www.a-scripts.com/object-oriented-php/ 2009/02/21/the-observer-pattern/
  • 23. Why Iterators? —  Readable —  Easy to understand —  Testable —  Easy to refactor —  Consistent usage —  Easily add functionality —  Can be extended —  Can be chained
  • 24. Meet the Iterator Interface
  • 25. So how is it different? $ar= array(); $it = new Iterator; —  reset($ar) —  $it->rewind() —  !is_null(key($ar)) —  $it->valid() —  current($ar) —  $it->key() —  key($ar) —  $it->current() —  next($ar) —  $it->next()
  • 26. FilterIterator —  Abstract Class —  Has one method that must be implemented – accept – which should return true or false —  Highly useful for many types of iteration —  https://github.com/sebastianbergmann/php-file- iterator/blob/master/File/Iterator.php FilterIterator OuterIterator Iterator Traversable
  • 27. IteratorIterator —  Regular Class —  Stick in something that implements traversable —  Instant Iterator —  https://github.com/mediaslave/phrails/blob/ 6d40d1584c0202668b071c0fd4b53e060b6724c7/ framework/db/ResultSet.php IteratorIterator OuterIterator Iterator Traversable
  • 28. ArrayIterator —  Regular Class —  Iterates an array – OR the public properties of an object! (neat trick – dirty trick) —  https://github.com/codealchemy/ACL/blob/ d1729ec7c3aee427fb57da9c2f2817503aa507b5/lib/ CODEAlchemy/Component/ACL/NodeList.php ArrayAccess and ArrayIterator SeekableIterator Iterator Traversable Countable too!
  • 29. RecursiveIteratorIterator —  Regular Class —  Like IteratorIterator only recursive to boot —  https://github.com/Xosofox/propelVendor/blob/ 85986d1ef52167f3044d69be142c72895174bac1/ propel/config/PropelConfigurationIterator.php RecursiveIteratorIterator OuterIterator Iterator Traversable
  • 30. ParentIterator —  Regular Class —  Filter out stuff without children —  https://github.com/ebihara/php-src/blob/ b62203bf12ea1c2b63a0de996a236f43b2ac100c/ext/ phar/phar/directorygraphiterator.inc ParentIterator OuterIterator Iterator Traversable
  • 31. LimitIterator —  Regular Class —  Like mysql’s limit – pick your range and offset and foreach away! —  https://github.com/mintao/zf-mini/blob/ 9efff5f8b25383ef2cdf91b0e4301d90965c4fb8/ Paginator/SerializableLimitIterator.php LimitIterator OuterIterator Iterator Traversable
  • 32. CachingIterator —  Regular Class —  Manages another iterator by checking whether it has more elements each time using a hasNext() method —  https://github.com/shimondoodkin/ node_spreadsheet/blob/ e16660cebd2b65abba1a8f5db4449285fa4c3cc6/ orig/Classes/PHPExcel/Worksheet/RowIterator.php CachingIterator OuterIterator Iterator Traversable
  • 33. RecursiveCachingIterator —  Regular Class —  Just like caching iterator only – believe it or not – recursive! —  https://github.com/codedor/cakephp_navigation/ blob/ 121b3f0594ad0e42a873f65d45583c5ca85343c3/ views/helpers/menu.php RecursiveCachingIterator CachingIterator OuterIterator Iterator Traversable
  • 34. DirectoryIterator —  Regular Class —  Makes going through directories a snap —  isDot, isFile – I love you —  https://github.com/quentinhill/curator/blob/ 44ec76ca9c3d749028b5d950ab78c7dc480dee83/ Curator/Project.php SplFileInfo DirectoryIterator Iterator Traversable (extends)
  • 35. RecursiveDirectoryIterator —  Regular Class —  Like, do it again… and again… and again… and… —  https://github.com/gjarkko/Track-o-Matic/blob/ ce506e71326805fe24e38b4262328648cad9a50e/ server/classes/Tools.php DirectoryIterator (extends) RecursiveIterator Iterator Traversable
  • 36. RegexIterator —  Regular Class —  Filter an iterator by a regex —  Pick how you want it to match —  https://github.com/drm/Sprig/blob/ b57bee029ce3d4317f90f38de2b643e3b6d94c96/lib/ Sprig/Extension/Smarty/PluginLoader/Iterator.php FilterIterator IteratorIterator Iterator Traversable (extends) (extends)
  • 37. Datastructures NEW WAYS OF MANAGING DATA http://matthewturland.com/2010/05/20/new-spl-features-in-php-5-3/
  • 38. DoublyLinkedLists – CS Lesson —  ordered collection of values —  linked to each element before it —  linked to each element after it —  “doubly linked” —  PHP datastructure – a php object with a doublylinkedlist stored inside it
  • 39. SplDoublyLinkedList —  Don’t use this —  Yes, that’s a terrible thing to say – but this is really nothing more then a “base class” with little to recommend on its own —  Has a doublylinkedlist from C underneath instead of a hashtable – if you know what that means you may find a real use for this (I have not)
  • 40. SplStack —  Data is in LIFO —  Anything you need to iterate a lot —  Even cooler? Turn on the mode that will autodelete each item as you process it —  Any Queue you need to push stuff onto and deal with in LIFO order —  https://github.com/CHH/Spark2/blob/ a01607a2480bd6a9b8251e56579fe84869683925/lib/ Spark/App.php
  • 41. SplQueue —  Data is in FIFO —  Anything you need to iterate a lot —  Even cooler? Turn on the mode that will autodelete each item as you process it —  Any Queue you need to push stuff onto and deal with in LIFO order —  https://github.com/composer/composer/blob/ 52565a593529048a631110879c76b46bbf76ba82/src/ Composer/DependencyResolver/Solver.php
  • 42. Heap – CS Lesson —  comparison function used to compare the new element to other elements —  element is placed according to functions return value —  underlying algorithm does it with minimal comparisons —  PHP datastructure – a php object with a heap stored inside it
  • 43. Using SplHeap —  This is an abstract class —  You need to compare elements —  https://github.com/ckwalsh/LibSprite
  • 44. SplMinHeap, SplMaxHeap —  These are concrete heap implementations, designed to grab the lowest possible value out, or the highest possible —  https://github.com/Wordi/LooPHP/blob/ fce3947bc27cdd4ae2109e62f7ad58ed68af7862/ LooPHP/EventLoop.php
  • 45. SplPriorityQueue —  Uses heap internally —  Is non-deterministic when identical priorities are used (bug bug bug….) —  https://github.com/ss23/DeBot/blob/ dced95faaf5b5284057d0824151bae4a95866305/ core/SplFIFOPriorityQueue.php
  • 46. SplFixedArray —  You have a large amount of data, you know the final size, you need to stick it into an array —  You’re not going to expand it past the final size —  This is not a small amount of data —  You might need it in non-sequential order but can handle having only integers for keys —  https://github.com/cboden/gClient/blob/ 429b27a54db5b4c1d30bbdc83566678c03b96bea/ lib/gClient/Calendar/Calendar.php
  • 47. SplObjectStorage —  This can be used two ways ¡  Objects can be keys in an array (with two values) ¡  As a Set (with one value) —  https://github.com/greggles/ epm_project_management/blob/ 50b904333647216ec678fd922f4ac53dbf0e53ee/ QueryPath/CssEventHandler.php
  • 48. What do you want to see in SPL? —  More standard interface? —  More datastructures? ¡  trees? ¡  graphs? —  More iterators? really? more?
  • 50. Contact Me —  http://emsmith.net —  http://joind.in/3791 —  [email protected] —  IRC – freenode – auroraeosrose —  #php-gtk #coapp and others