3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace RefactoringGuru\Prototype\RealWorld; /** * Прототип. */ class Page { private $title; private $body; /** * @var Author */ private $author; private $comments = []; /** * @var \DateTime */ private $date; // +100 приватных полей. public function __construct(string $title, string $body, Author $author) { $this->title = $title; $this->body = $body; $this->author = $author; $this->author->addToPage($this); $this->date = new \DateTime(); } public function addComment(string $comment): void { $this->comments[] = $comment; } /** * Вы можете контролировать, какие данные вы хотите перенести в * клонированный объект. * * Например, при клонировании страницы: * - Она получает новый заголовок «Копия ...». * - Автор страницы остаётся прежним. Поэтому мы оставляем ссылку на * существующий объект, добавляя клонированную страницу в список страниц * автора. * - Мы не переносим комментарии со старой страницы. * - Мы также прикрепляем к странице новый объект даты. */ public function __clone() { $this->title = "Copy of " . $this->title; $this->author->addToPage($this); $this->comments = []; $this->date = new \DateTime(); } } class Author { private $name; /** * @var Page[] */ private $pages = []; public function __construct(string $name) { $this->name = $name; } public function addToPage(Page $page): void { $this->pages[] = $page; } } /** * Клиентский код. */ function clientCode() { $author = new Author("John Smith"); $page = new Page("Tip of the day", "Keep calm and carry on.", $author); // ... $page->addComment("Nice tip, thanks!"); // ... $draft = clone $page; echo "Dump of the clone. Note that the author is now referencing two objects.\n\n"; print_r($draft); } clientCode();
Output for 8.3.6
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010448 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010466 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.009933 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.009943 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.3.4
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.009561 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.009581 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.3.3
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010346 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010367 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.3.2
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004113 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004119 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.3.1
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003802 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003807 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.3.0
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004039 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004045 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.18
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.008736 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.008744 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.17
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010260 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010280 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.16
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.006737 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.006745 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.15
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004032 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004038 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.14
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004128 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004137 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.13
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004066 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004071 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.12
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004057 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004067 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.11
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004570 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004575 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.10
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.005342 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.005354 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.9
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003915 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003924 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.8
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004204 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004213 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.7
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004143 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004153 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.6
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004178 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004190 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.5
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004076 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004085 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.4
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003924 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003933 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.3
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003752 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003761 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.2
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004158 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004168 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.1
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003770 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003779 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.2.0
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003678 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003688 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.28
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.006520 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.006527 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.27
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003852 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003856 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.26
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003940 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003945 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.25
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003947 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003952 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.24
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004306 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004311 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.23
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.005126 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.005132 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.22
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003813 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003822 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.21
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003831 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003840 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.20
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004066 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004075 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.19
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003888 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003897 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.18
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003943 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003953 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.17
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003914 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003920 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.16
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003465 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003470 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.15
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003614 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003619 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.14
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003854 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003860 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.13
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003705 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003711 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.12
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003834 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003840 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.11
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003857 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003863 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.10
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004776 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004785 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.9
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003693 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003698 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.8
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004607 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004617 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.7
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003786 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003792 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.6
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.005250 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.005257 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.5
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004024 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004030 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.4
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003608 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003614 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.3
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003666 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003672 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.2
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004123 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004130 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.1
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003555 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003564 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.1.0
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003770 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003780 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.30
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003695 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003703 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.29
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003558 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003570 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.28
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003161 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003169 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.27
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003515 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003527 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.26
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003081 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003088 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.25
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003339 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003349 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.24
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003529 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003540 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.23
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003371 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003382 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.22
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003401 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003412 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.21
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003859 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003871 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.20
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003241 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003251 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.19
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003713 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003724 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.18
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003690 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003702 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.17
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003702 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003715 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.16
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003847 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003860 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.15
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003517 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003529 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.14
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003481 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003493 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.13
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 20:15:55.002536 [timezone_type] => 3 [timezone] => UTC ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 20:15:55.002547 [timezone_type] => 3 [timezone] => UTC ) )
Output for 8.0.12
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003827 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003839 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.11
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004535 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004547 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.10
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003594 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003602 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.9
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003491 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003498 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.8
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010905 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.010929 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.7
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003663 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003672 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.6
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003443 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003451 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.30, 8.0.5
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003470 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003478 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.3
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.042485 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.042594 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.2
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.050593 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.050618 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.1
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.056541 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.056564 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 8.0.0
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.018335 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.018361 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.33
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.001663 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.001671 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.32
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003145 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003153 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.30
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004978 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004987 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.29
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003238 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003247 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.28
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003704 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003713 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.27
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003211 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003219 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.26
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 20:15:55.002077 [timezone_type] => 3 [timezone] => UTC ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 20:15:55.002086 [timezone_type] => 3 [timezone] => UTC ) )
Output for 7.4.25
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003573 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003581 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.24
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003526 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003534 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.23
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003159 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003167 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.22
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004575 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.004585 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.21
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.006998 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.007015 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.20
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003584 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003592 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.16
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.026515 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.026540 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.15
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.034162 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.034185 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.14
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.048594 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.048619 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.13
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.022644 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.022661 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.12
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.018875 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.018898 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.11
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.045265 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.045292 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.10
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037808 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037875 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.9
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.021094 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.021168 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.8
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.030065 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.030083 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.7
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.031183 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.031203 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.6
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.029554 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.029579 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.5
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.059459 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.059477 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.4
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.051870 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.051900 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.3
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.041967 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.041991 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.2
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037869 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037887 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.1
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.027691 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.027709 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.4.0
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.023664 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.023689 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.33
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003570 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003578 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.32
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 20:15:55.002098 [timezone_type] => 3 [timezone] => UTC ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 20:15:55.002106 [timezone_type] => 3 [timezone] => UTC ) )
Output for 7.3.31
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003518 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.003526 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.29
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.007292 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.007310 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.28
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037215 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037237 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.27
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.034561 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.034584 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.26
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.054332 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.054349 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.25
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.027654 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.027673 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.24
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.033163 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.033181 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.23
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.062680 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.062697 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.22
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037897 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037928 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.21
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.043215 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.043243 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.20
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.035662 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.035698 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.19
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.052564 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.052588 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.18
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037830 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.037879 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.17
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.065225 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.065266 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.16
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.049367 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.049400 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.15
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.050337 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.050362 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.14
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.029510 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.029543 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.13
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.032545 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.032569 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.12
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.053512 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.053532 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.11
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.047350 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.047372 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.10
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.040535 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.040553 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.9
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.029165 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.029187 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.8
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.042555 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.042576 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.7
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.038966 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.039000 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.6
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.033020 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.033053 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.5
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.051449 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.051484 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.4
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.034219 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.034252 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.3
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.046180 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.046211 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.2
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.091891 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.091921 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.1
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.053684 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.053710 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )
Output for 7.3.0
Dump of the clone. Note that the author is now referencing two objects. RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Copy of Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object ( [name:RefactoringGuru\Prototype\RealWorld\Author:private] => John Smith [pages:RefactoringGuru\Prototype\RealWorld\Author:private] => Array ( [0] => RefactoringGuru\Prototype\RealWorld\Page Object ( [title:RefactoringGuru\Prototype\RealWorld\Page:private] => Tip of the day [body:RefactoringGuru\Prototype\RealWorld\Page:private] => Keep calm and carry on. [author:RefactoringGuru\Prototype\RealWorld\Page:private] => RefactoringGuru\Prototype\RealWorld\Author Object *RECURSION* [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( [0] => Nice tip, thanks! ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.059364 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) ) [1] => RefactoringGuru\Prototype\RealWorld\Page Object *RECURSION* ) ) [comments:RefactoringGuru\Prototype\RealWorld\Page:private] => Array ( ) [date:RefactoringGuru\Prototype\RealWorld\Page:private] => DateTime Object ( [date] => 2021-06-11 22:15:55.059388 [timezone_type] => 3 [timezone] => Europe/Amsterdam ) )

preferences:
235.19 ms | 409 KiB | 154 Q