Commit Graph

5959 Commits

Author SHA1 Message Date
Dmitry Stogov
1322b1a30a Fixed bug #42009 (is_a() and is_subclass_of() should NOT call autoload, in the same way as "instanceof" operator). 2007-08-22 13:20:09 +00:00
Dmitry Stogov
046b878b5b Fixed name resolution
namespace A;
    B::foo(); // 1. this is function "foo" from namespace "B"
              // 2. this is static method "foo" of class "B" from namespace "A"
              // 3. this is static methos "boo" of internal class "B"
  namespace A;
    A::foo(); // 1. this is function "foo" from namespace "A"
              // 2. this is static method "foo" of class "A" from namespace "A"
              // 3. this is static methos "foo" of internal class "A"
2007-08-22 07:39:37 +00:00
Dmitry Stogov
11e267f619 typo 2007-08-22 06:33:25 +00:00
Dmitry Stogov
4fb5eadb77 typo 2007-08-22 06:17:12 +00:00
2991d88efa ChangeLog update 2007-08-21 01:31:31 +00:00
Dmitry Stogov
c7d82c75c9 Added namespace related optimizations and comments 2007-08-20 09:48:41 +00:00
6f972e370b ChangeLog update 2007-08-18 01:31:28 +00:00
Dmitry Stogov
6e3a76898e Namespaces: improved run-time speed 2007-08-17 12:05:19 +00:00
687007bbdc ChangeLog update 2007-08-14 01:31:21 +00:00
e7589245dc ChangeLog update 2007-08-09 01:31:24 +00:00
Dmitry Stogov
ad8aa49f06 Fixed bug #42211 (property_exists() fails to find protected properties from a parent class) 2007-08-08 13:32:58 +00:00
02bc185040 ChangeLog update 2007-08-04 01:31:26 +00:00
Stanislav Malyshev
46f2484a3b MF5: it's custom to use 1<< 2007-08-03 18:41:07 +00:00
Antony Dovgal
b6c96790ba MFB: adjust the test names a bit 2007-08-03 13:51:11 +00:00
Stanislav Malyshev
d4cc7daba2 MF5: fix for access control with .htaccess 2007-08-03 01:40:05 +00:00
c54e9706fd ChangeLog update 2007-08-03 01:31:19 +00:00
Johannes Schlüter
e80d138b1c - Add possibility to call static class members using variables (Etienne Kneuss) 2007-08-02 21:53:53 +00:00
Antony Dovgal
2de948a3fa int -> zend_bool 2007-08-02 20:32:34 +00:00
Johannes Schlüter
0122a6fede - Respect value of the parameter for get_loaded_extensions() and
get_defined_cosntants()
2007-08-02 16:52:59 +00:00
df7450e4c6 ChangeLog update 2007-08-02 01:31:21 +00:00
Dmitry Stogov
d4af6ba6bf Fixed namespace name and internal class name ambiguity 2007-08-01 11:44:25 +00:00
3f29f3fbd6 ChangeLog update 2007-08-01 01:31:27 +00:00
Johannes Schlüter
c883e25485 - Add additional param to get_loaded_extensions() for returning Zend
extensions (Fixes #41278)
2007-07-31 22:45:08 +00:00
e9af174f6d ChangeLog update 2007-07-28 01:34:20 +00:00
Dmitry Stogov
b5ccc03fc2 Improved fix for bug #41633 (self:: doesn't work for constants) to support function define() 2007-07-27 16:29:25 +00:00
Dmitry Stogov
addd8f592d Extended tests 2007-07-27 14:53:23 +00:00
Dmitry Stogov
c04dc1699b Namespace support for name ambiguity between namespace and class name 2007-07-27 13:41:36 +00:00
Dmitry Stogov
9703e90904 Support for namespaces in compile-time constant reference 2007-07-27 09:04:12 +00:00
6e64f21bcb ChangeLog update 2007-07-27 01:34:13 +00:00
Dmitry Stogov
995c130320 Added warning for useless import statement 2007-07-26 08:57:52 +00:00
Dmitry Stogov
c4b5d9e572 Disabling declaration of class which name conflicts with import. 2007-07-26 08:32:52 +00:00
7ca6f98d98 ChangeLog update 2007-07-26 01:31:21 +00:00
Dmitry Stogov
e9ccedf427 Fixed bug #41713 (Persistent memory consumption on win32 since 5.2) 2007-07-25 11:13:17 +00:00
a2a4526776 ChangeLog update 2007-07-25 01:31:24 +00:00
Dmitry Stogov
d0ec9d001c Fixed bug #40705 (Iterating within function moves original array pointer)
Fixed bug #40509 (key() function changed behaviour if global array is used within function)
2007-07-24 19:24:56 +00:00
Dmitry Stogov
215edd7a4a Fixed bug #41372 (Internal pointer of source array resets during array copying)
Fixed bug #37715 (array pointers resetting on copy)
2007-07-24 18:28:53 +00:00
Dmitry Stogov
92d3bc0c93 Fixed bug #40757 (get_object_vars get nothing in child class)
Fixed bug #41929 (Foreach on object does not iterate over all visible properties)
2007-07-24 11:40:07 +00:00
b1e99fc723 ChangeLog update 2007-07-24 01:31:34 +00:00
Jani Taskinen
ea5a211256 - Fixed bug #42071 (ini scanner allows NULL to be used as option name)
# Also fixed a warning
2007-07-23 15:57:08 +00:00
0131d3341e ChangeLog update 2007-07-22 01:31:31 +00:00
Sara Golemon
b1bc911cee Add support got zend_class_entry->get_static_method() and matching __callStatic() userspace method @doc 2007-07-21 05:27:07 +00:00
Jani Taskinen
5d0176a32b - Fix compile warnings 2007-07-21 00:34:41 +00:00
e32b6cb3d3 ChangeLog update 2007-07-20 01:31:22 +00:00
Jani Taskinen
3f319ed27e - Use the SEPARATE_ZVAL_IF_NOT_REF macro (cleanup code) 2007-07-19 15:29:05 +00:00
Jani Taskinen
5778b43e2f Beautify and reword a bit. 2007-07-19 13:57:06 +00:00
Antony Dovgal
4836ea7c50 fix test 2007-07-19 09:34:19 +00:00
9ef03214b1 ChangeLog update 2007-07-15 01:31:49 +00:00
Dmitry Stogov
7e8a11f636 Fixed test 2007-07-14 08:51:54 +00:00
Dmitry Stogov
5e21f121ec Fixed compilation on Windows 2007-07-14 08:51:17 +00:00
fd4bf13ac3 ChangeLog update 2007-07-14 01:31:47 +00:00