History log of /PHP-5.5/Zend/zend_language_scanner.l (Results 226 – 250 of 281)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 52406cb3 08-Aug-2002 Andi Gutmans

- Make new 'is' operator work with classes only and return false when
- the object isn't of the said class or the value isn't an object.


Revision tags: dev
# 82c72f27 30-Jul-2002 Andrei Zmievski

@- Adding 'is' operator that can be used to check the type of a variable,
@ or its class. (Andrei)


Revision tags: php-4.2.2
# 3be1dd46 16-Jul-2002 Andi Gutmans

- Syntactic sugar - Add "public" as a synonym for "var".
- Now we have the three P's.
You can do:

<?
class MyClass {
public $a;
pr

- Syntactic sugar - Add "public" as a synonym for "var".
- Now we have the three P's.
You can do:

<?
class MyClass {
public $a;
private $b;
protected $c;
}

?>

show more ...


# bc5ea87e 15-Jul-2002 Andi Gutmans

- 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 protect

- 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.

show more ...


# 7b68f510 14-Jul-2002 Andi Gutmans

- 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 y

- 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.

show more ...


Revision tags: INITIAL_IMPORT_SOURCEFORGE, xmlrpc_epi_0_51_merge_pt, php-4.3.0dev_zend2_alpha2, php-4.3.0dev, php5_5_0, RELEASE_0_90, php-4.3.0dev_zend2_alpha1, BEFORE_OBJECTS_STORE, SAFEGUARD_3_0_BETA1_RC1_26062002, RELEASE_0_11, NEW_UI_API_BP, RELEASE_0_10, RELEASE_0_4, php-4.3.0dev-ZendEngine2, php-4.3.0dev-ZendEngine2-Preview1, php-4.2.1, php-4.2.1RC2, php-4.2.1RC1, php-4.2.0, php-4.2.0RC4, php-4.2.0RC3
# 3eafd220 10-Apr-2002 foobar

MFZE1


# 60ccb411 10-Apr-2002 foobar

MFZE1


Revision tags: php-4.2.0RC2, php-4.2.0RC1, help
# b90d80b5 02-Mar-2002 Andi Gutmans

- Initial patch to support importing from class scopes (for Stig).
- It isn't complete yet but I want to work on it from another machine. It
- shouldn't break anything else so just don't try

- Initial patch to support importing from class scopes (for Stig).
- It isn't complete yet but I want to work on it from another machine. It
- shouldn't break anything else so just don't try and use it.
- The following is a teaser of something that already works:
<?php

class MyClass
{
function hello()
{
print "Hello, World\n";
}
class MyClass2
{
function hello()
{
print "Hello, World in MyClass2\n";
}
}
}

import function hello, class MyClass2 from MyClass;

MyClass2::hello();
hello();
?>

show more ...


# 90bd4539 01-Mar-2002 Andi Gutmans

- Remove use of C++ reserved words namespace/this


Revision tags: php-4.1.2
# 00e90f2f 21-Feb-2002 Andi Gutmans

- Experimental support for private members.
<?
class MyClass {
private $Hello = "Hello, World!\n";

function printHello()

- Experimental support for private members.
<?
class MyClass {
private $Hello = "Hello, World!\n";

function printHello()
{
print $this->Hello;
}
}

class MyClass2 extends MyClass {
function printHello()
{
MyClass::printHello(); /* Should print */
print $this->Hello; /* Shouldn't print out anything */
}
}

$obj = new MyClass();
print $obj->Hello; /* Shouldn't print out anything */
$obj->printHello(); /* Should print */

$obj = new MyClass2();
print $obj->Hello; /* Shouldn't print out anything */
$obj->printHello();
?>

show more ...


Revision tags: BEFORE_NEW_OBJECT_MODEL, PRE_ISSET_PATCH
# 62dc854b 06-Jan-2002 Sebastian Bergmann

Happy New Year.


Revision tags: php-4.1.1
# 43617d0d 18-Dec-2001 Zeev Suraski

MFZE1


Revision tags: PRE_FUNC_RETURNS_OBJECT_PATCH, ChangeLog
# d863d52a 11-Dec-2001 Sebastian Bergmann

Update headers.


Revision tags: php-4.1.0, php-4.1.0RC5, php-4.1.0RC4, php-4.1.0RC3, php-4.1.0RC2, POST_PARAMETER_PARSING_API, PRE_PARAMETER_PARSING_API, php-4.1.0RC1, php4, php-4.0.7RC3
# 2eabb14d 30-Sep-2001 Andi Gutmans

- Merge the NAMESPACES_BRANCH. It wasn't a good idea to have a branch when
- the whole CVS tree is work in progress


Revision tags: POST_SUBST_Z_MACROS, PRE_SUBST_Z_MACROS
# 17352812 22-Sep-2001 Zeev Suraski

MFZE1


# 483fc4c7 19-Sep-2001 Zeev Suraski

MFZE1


# 9f61e47c 10-Sep-2001 Zeev Suraski

MFZE1 (nuke cplusplus code)


Revision tags: php-4.0.7RC2
# 29f5dbe1 30-Aug-2001 Andi Gutmans

- Initial support for exceptions.


# b392fe44 28-Aug-2001 Zeev Suraski

MFZE1


# 77c52275 16-Aug-2001 Zeev Suraski

MFZE1


Revision tags: php-4.0.7RC1, BEFORE_EXP_MERGE
# 4f6c95d1 11-Aug-2001 Zeev Suraski

Whitespace


Revision tags: PRE_METHOD_DEREFERENCE_PATCH, BEFORE_PARAM_PARSING_CHANGE
# 5af7770a 07-Aug-2001 Andi Gutmans

- Sync Engine2 CVS with latest Engine CVS


Revision tags: PRE_ENGINE2_SPLIT
# 7ade3b30 06-Aug-2001 Zeev Suraski

Fix an off by one lineno issue, in case of an implicit ;


# 609d58a4 06-Aug-2001 Zeev Suraski

Merge from branch - move to standard C scanners in thread safe mode


# f93bfc47 01-Aug-2001 Zeev Suraski

Implement fast scanning in the multithreaded environment


12345678910>>...12