Marcus Boerger
4256448a5f
Update
2004-02-11 22:38:05 +00:00
Andi Gutmans
70c418d064
- We will go with PHP 4 behavior. With the new object model assigning by
...
reference has lost a lot of its importance.
2004-02-10 11:20:52 +00:00
Sebastian Bergmann
0e3ce62c7b
Committing for Jan.
2004-02-05 10:41:55 +00:00
Sebastian Bergmann
e2e5c69f47
clone/__clone() related changes.
2004-02-03 16:56:37 +00:00
Andi Gutmans
fc835b4a46
- Fix typos
2003-12-30 13:28:31 +00:00
Marcus Boerger
5e9279bb44
Update
2003-12-30 13:14:14 +00:00
Marcus Boerger
58246412a7
IteratorAggregate::getIterator() cannot return anythingy else than objects
2003-11-13 08:23:49 +00:00
Andi Gutmans
0b3fe78906
- Beta 2
2003-10-30 10:07:26 +00:00
Marcus Boerger
6c05957aa2
Update
2003-10-25 15:11:49 +00:00
Marcus Boerger
52d2f8f579
Update
2003-10-25 14:54:10 +00:00
Sebastian Bergmann
e1fd9aed8f
Fugbix typo.
2003-10-25 09:20:47 +00:00
Sebastian Bergmann
8bb30308f8
s/Throwable/Printable: Exception has become an internal class since I initially documented interfaces.
2003-10-25 09:18:23 +00:00
Andi Gutmans
23c00b0d5d
- Fix typo
2003-10-24 22:13:00 +00:00
Marcus Boerger
071eaf8576
Zend/ZEND_CHANGES
2003-10-24 18:24:28 +00:00
Marcus Boerger
91099f3f4f
Make this clear
2003-10-21 06:41:26 +00:00
Andi Gutmans
28957fd536
- Add comment from Timm
2003-10-20 22:02:10 +00:00
Marcus Boerger
c92b0202c7
Update
2003-10-20 10:26:03 +00:00
Marcus Boerger
445aa744e7
Update
2003-10-20 10:06:31 +00:00
Sebastian Bergmann
4aa81c9d72
Remove namespace references.
2003-06-29 09:40:23 +00:00
Sebastian Bergmann
668fc20b97
Document 'const' keyword.
2003-04-10 16:54:46 +00:00
Sebastian Bergmann
81a346e4fe
Dedicated to Greg Beaver <greg@chiaraquartet.net>.
2003-03-07 16:45:41 +00:00
Sebastian Bergmann
ba18cd1a45
Document 'final'.
2003-03-07 11:51:19 +00:00
Sebastian Bergmann
55826fbeb5
Fix class type hints example.
2003-03-07 06:29:07 +00:00
Sebastian Bergmann
63dfff02b1
Update 'abstract' section.
2003-03-07 05:19:19 +00:00
Sebastian Bergmann
44b6894361
-german+english+.
2003-03-06 16:39:45 +00:00
Sebastian Bergmann
8f8a534c7a
D some TBDs
2003-03-06 16:30:21 +00:00
Sebastian Bergmann
189d29061e
Syntactic sugar is sweet.
2003-02-26 08:27:14 +00:00
Sebastian Bergmann
37d529f100
Remove obsolete not on redeclaring protected members.
2003-02-24 10:38:43 +00:00
Sebastian Bergmann
99c358c7cb
Leftover.
2003-02-24 10:37:45 +00:00
Sebastian Bergmann
57ae4a5ac4
Initial documentation of namespace {}.
2003-02-24 10:35:39 +00:00
Andi Gutmans
c073b76aac
- Change "is" to "instanceof" as it explains better what the operator means.
...
- "is_a" was also appropriate but ugly.
2003-01-14 21:29:23 +00:00
Sebastian Bergmann
81b1ed9ff3
Update.
2002-12-07 16:47:44 +00:00
Andi Gutmans
7ce4bc76bf
- Add abstract methods
2002-11-20 19:15:36 +00:00
Andi Gutmans
1cee814da0
- Update with statics
2002-11-11 19:49:29 +00:00
Andi Gutmans
867519c420
- A couple of updates
2002-11-05 19:55:00 +00:00
Sebastian Bergmann
69343667e7
Fugbix typo.
2002-10-10 18:49:29 +00:00
Derick Rethans
d23c9b24ca
- No tabs :)
2002-09-30 10:34:40 +00:00
Sebastian Bergmann
af4243b908
Whitespace fixes.
2002-09-04 16:50:01 +00:00
Stanislav Malyshev
36c60cea38
Fix __call and add some docs
2002-09-04 15:03:41 +00:00
Sebastian Bergmann
42eebfc81a
TBD: __call(), __get(), __set().
2002-09-04 12:49:15 +00:00
Sebastian Bergmann
84c1bee585
Workaround for superfluous comma in var_export() result.
2002-09-04 05:46:16 +00:00
Sebastian Bergmann
7d85d01834
Let debug_backtrace() example print out the class name, if applicable, and the function/method arguments.
2002-09-04 05:35:20 +00:00
foobar
ff012991f8
This was mentioned already above (with an example too :)
2002-07-17 03:46:55 +00:00
Andi Gutmans
852f4f2c29
- Before I forget to list it, this was also added.
2002-07-16 19:16:53 +00:00
Andi Gutmans
bc5ea87e28
- Commit patch to support protected member variables (by Timm Friebe w/
...
- some fixes by me).
- You can't access protected variables from outside the object. If you want
- to see a protected member from your ancestors you need to declare the
- member as protected in the class you want to use it in. You can't
- redeclare a protected variable as private nor the other way around.
2002-07-15 18:09:56 +00:00
Andi Gutmans
7b68f5108a
- Nuke delete(). It was a big mistake to introduce it and I finally
...
- understand why Java didn't do so.
- If you still want to control destruction of your object then either make
- sure you kill all references or create a destruction method which you
- call yourself.
2002-07-14 19:23:18 +00:00
Andi Gutmans
4d1321afbc
- Remember to document autoload when I have time.
2002-06-30 19:55:50 +00:00
Sebastian Bergmann
a014080299
Fugbix typo.
2002-05-24 08:46:32 +00:00
Andi Gutmans
f657df14be
- Add a bit of information.
2002-05-24 08:32:18 +00:00
Sebastian Bergmann
9f47b2f193
Rephrase.
2002-05-12 08:35:37 +00:00