|
6 | 6 | *
|
7 | 7 | * SPL - Standard PHP Library
|
8 | 8 | *
|
9 |
| - * (c) Marcus Boerger, 2003 - 2006 |
| 9 | + * (c) Marcus Boerger, 2003 - 2007 |
10 | 10 | */
|
11 | 11 |
|
12 | 12 | /** @mainpage SPL - Standard PHP Library
|
|
118 | 118 | * - <a href="http://www.phpriot.com/d/articles/php/oop/oop-with-spl-php-5-1/index.html">Advanced OOP with SPL in PHP 5</a>
|
119 | 119 | * - <a href="http://www.devshed.com/c/a/PHP/The-Standard-PHP-Library-Part-1/">The Standard PHP Library, Part 1</a>
|
120 | 120 | * - <a href="http://www.devshed.com/c/a/PHP/The-Standard-PHP-Library-Part-2/">The Standard PHP Library, Part 2</a>
|
121 |
| - * - <a href="http://www.wiki.cc/php/SPL">SPL on PHP Wiki</a> |
122 | 121 | * - <a href="http://www.professionelle-softwareentwicklung-mit-php5.de/erste_auflage/oop.iterators.spl.html">Die Standard PHP Library (SPL) [german]</a>
|
123 | 122 | *
|
124 | 123 | * 10) Talks on SPL:
|
125 |
| - * - SPL for the masses <a href="http://somabo.de/talks/200504_php_quebec_spl_for_the_masses.pps">[pps]</a>, <a href="http://somabo.de/talks/200504_php_quebec_spl_for_the_masses.pdf">[pdf]</a> |
126 |
| - * - From engine overloading to SPL <a href="http://somabo.de/talks/200505_cancun_from_engine_overloading_to_spl.pps">[pps]</a>, <a href="http://somabo.de/talks/200505_cancun_from_engine_overloading_to_spl.pdf">[pdf]</a> |
127 |
| - * - Happy SPLing <a href="http://somabo.de/talks/200509_toronto_happy_spling.pps">[pps]</a>, <a href="http://somabo.de/talks/200509_toronto_happy_spling.pdf">[pdf]</a> |
128 |
| - * - Debug session 1 <a href="http://somabo.de/talks/200509_toronto_iterator_debug_session_1.pps">[pps]</a>, <a href="http://somabo.de/talks/200509_toronto_iterator_debug_session_1.pdf">[pdf]</a> |
129 |
| - * - Debug session 2 <a href="http://somabo.de/talks/200509_toronto_iterator_debug_session_2.pps">[pps]</a>, <a href="http://somabo.de/talks/200509_toronto_iterator_debug_session_2.pdf">[pdf]</a> |
| 124 | + * - SPL Update <a href="http://talks.somabo.de/200702_vancouver_spl_update.pps">[pps]</a>, <a href="http://talks.somabo.de/200702_vancouver_spl_update.pdf">[pdf]</a> |
| 125 | + * - Happy SPLing <a href="http://talks.somabo.de/200509_toronto_happy_spling.pps">[pps]</a>, <a href="http://talks.somabo.de/200509_toronto_happy_spling.pdf">[pdf]</a> |
| 126 | + * - From engine overloading to SPL <a href="http://talks.somabo.de/200505_cancun_from_engine_overloading_to_spl.pps">[pps]</a>, <a href="http://talks.somabo.de/200505_cancun_from_engine_overloading_to_spl.pdf">[pdf]</a> |
| 127 | + * - SPL for the masses <a href="http://talks.somabo.de/200504_php_quebec_spl_for_the_masses.pps">[pps]</a>, <a href="http://talks.somabo.de/200504_php_quebec_spl_for_the_masses.pdf">[pdf]</a> |
| 128 | + * |
| 129 | + * 11) Debug sessions: |
| 130 | + * - Debug session 1 <a href="200407_oscon_introduction_to_iterators_debug.pps">[pps]</a>, <a href="200407_oscon_introduction_to_iterators_debug.pdf">[pdf]</a> |
| 131 | + * - Debug session 2 <a href="http://talks.somabo.de/200509_toronto_iterator_debug_session_1.pps">[pps]</a>, <a href="http://talks.somabo.de/200509_toronto_iterator_debug_session_1.pdf">[pdf]</a>, <a href="http://taks.somabo.de/200411_php_conference_frankfrurt_iterator_debug_session.swf">[swf]</a> |
| 132 | + * - Debug session 3 <a href="http://talks.somabo.de/200509_toronto_iterator_debug_session_2.pps">[pps]</a>, <a href="http://talks.somabo.de/200509_toronto_iterator_debug_session_2.pdf">[pdf]</a> |
130 | 133 | *
|
131 | 134 | * You can download this documentation as a chm file
|
132 | 135 | * <a href="http://php.net/~helly/php/ext/spl/spl.chm">here</a>.
|
133 | 136 | *
|
134 |
| - * (c) Marcus Boerger, 2003 - 2006 |
| 137 | + * (c) Marcus Boerger, 2003 - 2007 |
135 | 138 | */
|
136 | 139 |
|
137 | 140 | /** @defgroup ZendEngine Zend engine classes
|
@@ -928,6 +931,14 @@ function isDir() {/**/}
|
928 | 931 | */
|
929 | 932 | function isLink() {/**/}
|
930 | 933 |
|
| 934 | + /** @return target of link. |
| 935 | + */ |
| 936 | + function getLinkTarget() {/**/} |
| 937 | + |
| 938 | + /** @return The resolved path |
| 939 | + */ |
| 940 | + function getRealPath() {/**/} |
| 941 | + |
931 | 942 | /** @return getPathname()
|
932 | 943 | */
|
933 | 944 | function __toString() {/**/}
|
|
0 commit comments