1
0
mirror of https://github.com/php/php-src.git synced 2026-04-07 16:13:32 +02:00
Files
archived-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
..
2001-03-11 19:35:26 +00:00
1999-10-04 15:20:12 +00:00
2001-09-22 00:09:24 +00:00
2001-12-11 17:38:49 +00:00
2001-09-19 10:41:35 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-13 16:55:04 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-16 20:28:18 +00:00
2001-12-26 17:49:22 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-08-31 21:47:26 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-09-10 00:08:24 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-01-12 11:14:46 +00:00
2001-12-18 19:56:23 +00:00
2001-12-18 19:56:23 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-13 16:55:04 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-11 15:16:21 +00:00
2001-12-26 19:54:20 +00:00
1999-04-07 18:10:10 +00:00
2001-12-11 09:17:38 +00:00
2001-09-19 10:06:09 +00:00