php-src/Zend
Andi Gutmans 5cb454a8ad - Fix scoping issue. The following works now:
<?
	class MyClass {
		static $id = 0;

		function MyClass()
		{
			$this->id = self::$id++;
		}

		function _clone()
		{
			$this->name = $clone->name;
			$this->address = "New York";
			$this->id = self::$id++;
		}
	}



	$obj = new MyClass();

	$obj->name = "Hello";
	$obj->address = "Tel-Aviv";

	print $obj->id;
	print "\n";

	$obj = $obj->_clone();

	print $obj->id;
	print "\n";
	print $obj->name;
	print "\n";
	print $obj->address;
	print "\n";
2001-12-26 20:17:34 +00:00
..
RFCs adding RFC for loose type requirements for functions 2001-09-17 16:01:20 +00:00
acconfig.h - Fix for Solaris. 2001-03-11 19:35:26 +00:00
acinclude.m4 fp_except check for FreeBSD 1.0-2.2.5 2000-06-18 16:51:42 +00:00
build.mk Add clean target which removes standard targets 1999-10-10 02:02:13 +00:00
buildconf Use libtool to build. 1999-10-04 15:20:12 +00:00
configure.in Use the hardly-documented third parameter of AM_INIT_AUTOMAKE to suppress 2000-12-02 13:27:07 +00:00
flex.skl MFZE1 2001-09-22 00:09:24 +00:00
FlexLexer.h Replace macros which begin with an underscore through an appropiately 2000-07-03 00:55:36 +00:00
LICENSE Forgot to update the LICENSE. 2001-12-11 17:38:49 +00:00
Makefile.am - MFZE1 2001-09-19 10:41:35 +00:00
zend_alloc.c Update headers. 2001-12-11 15:16:21 +00:00
zend_alloc.h Update headers. 2001-12-11 15:16:21 +00:00
zend_API.c - Fix crash bug in startup code. 2001-12-13 16:55:04 +00:00
zend_API.h - Pretty much finish _clone() support 2001-12-26 19:54:20 +00:00
zend_builtin_functions.c Update headers. 2001-12-11 15:16:21 +00:00
zend_builtin_functions.h Update headers. 2001-12-11 15:16:21 +00:00
ZEND_CHANGES I'm too trigger-happy. 2001-12-16 20:28:18 +00:00
zend_compile.c - Pretty much finish _clone() support 2001-12-26 19:54:20 +00:00
zend_compile.h - Initial support for _clone() 2001-12-26 17:49:22 +00:00
zend_config.w32.h Update headers. 2001-12-11 15:16:21 +00:00
zend_constants.c - Infrastructure changes for allowing to access the global scope from 2001-12-12 20:45:38 +00:00
zend_constants.h Update headers. 2001-12-11 15:16:21 +00:00
zend_dynamic_array.c Update headers. 2001-12-11 15:16:21 +00:00
zend_dynamic_array.h Update headers. 2001-12-11 15:16:21 +00:00
zend_errors.h Update headers. 2001-12-11 15:16:21 +00:00
zend_execute_API.c - Fix scoping issue. The following works now: 2001-12-26 20:17:34 +00:00
zend_execute_locks.h MFZE1 2001-08-31 21:47:26 +00:00
zend_execute.c - Fix scoping issue. The following works now: 2001-12-26 20:17:34 +00:00
zend_execute.h Update headers. 2001-12-11 15:16:21 +00:00
zend_extensions.c Update headers. 2001-12-11 15:16:21 +00:00
zend_extensions.h Update headers. 2001-12-11 15:16:21 +00:00
zend_fast_cache.h Update headers. 2001-12-11 15:16:21 +00:00
zend_globals_macros.h Update headers. 2001-12-11 15:16:21 +00:00
zend_globals.h - Fix crash bug in startup code. 2001-12-13 16:55:04 +00:00
zend_hash.c Update headers. 2001-12-11 15:16:21 +00:00
zend_hash.h Update headers. 2001-12-11 15:16:21 +00:00
zend_highlight.c Update headers. 2001-12-11 15:16:21 +00:00
zend_highlight.h Update headers. 2001-12-11 15:16:21 +00:00
zend_indent.c Update headers. 2001-12-11 15:16:21 +00:00
zend_indent.h Update headers. 2001-12-11 15:16:21 +00:00
zend_ini_parser.y Update headers. 2001-12-11 15:16:21 +00:00
zend_ini_scanner.h MFZE1 (nuke cplusplus code) 2001-09-10 00:08:24 +00:00
zend_ini_scanner.l Update headers. 2001-12-11 15:16:21 +00:00
zend_ini.c Update headers. 2001-12-11 15:16:21 +00:00
zend_ini.h Update headers. 2001-12-11 15:16:21 +00:00
zend_istdiostream.h Add newline 2001-01-12 11:14:46 +00:00
zend_language_parser.y - Initial support for _clone() 2001-12-26 17:49:22 +00:00
zend_language_scanner.h MFZE1 2001-12-18 19:56:23 +00:00
zend_language_scanner.l MFZE1 2001-12-18 19:56:23 +00:00
zend_list.c Update headers. 2001-12-11 15:16:21 +00:00
zend_list.h Update headers. 2001-12-11 15:16:21 +00:00
zend_llist.c Update headers. 2001-12-11 15:16:21 +00:00
zend_llist.h Update headers. 2001-12-11 15:16:21 +00:00
zend_modules.h Update headers. 2001-12-11 15:16:21 +00:00
zend_objects.c - Pretty much finish _clone() support 2001-12-26 19:54:20 +00:00
zend_objects.h add newline at end of file to avoid warnings 2001-11-05 00:17:28 +00:00
zend_opcode.c - Fix crash bug in startup code. 2001-12-13 16:55:04 +00:00
zend_operators.c Update headers. 2001-12-11 15:16:21 +00:00
zend_operators.h Update headers. 2001-12-11 15:16:21 +00:00
zend_ptr_stack.c Update headers. 2001-12-11 15:16:21 +00:00
zend_ptr_stack.h Update headers. 2001-12-11 15:16:21 +00:00
zend_qsort.c Update headers. 2001-12-11 15:16:21 +00:00
zend_qsort.h Update headers. 2001-12-11 15:16:21 +00:00
zend_sprintf.c Update headers. 2001-12-11 15:16:21 +00:00
zend_stack.c Update headers. 2001-12-11 15:16:21 +00:00
zend_stack.h Update headers. 2001-12-11 15:16:21 +00:00
zend_static_allocator.c Update headers. 2001-12-11 15:16:21 +00:00
zend_static_allocator.h Update headers. 2001-12-11 15:16:21 +00:00
zend_variables.c Update headers. 2001-12-11 15:16:21 +00:00
zend_variables.h Update headers. 2001-12-11 15:16:21 +00:00
zend.c - Print out object id for easier debugging 2001-12-26 20:06:06 +00:00
Zend.dsp - Infrastructure changes for allowing to access the global scope from 2001-12-12 20:45:38 +00:00
zend.h - Pretty much finish _clone() support 2001-12-26 19:54:20 +00:00
zend.ico Zend Library 1999-04-07 18:10:10 +00:00
Zend.m4 MFZE1 (AIX fixes) 2001-12-11 09:17:38 +00:00
ZendCore.dep - Rename modules.h to zend_modules.h 2001-02-26 18:18:34 +00:00
ZendTS.dsp MFZE1 2001-09-19 10:06:09 +00:00