mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
12 lines
148 B
PHP
12 lines
148 B
PHP
<?php
|
|
class sheep {
|
|
var $name;
|
|
}
|
|
|
|
$start = new sheep;
|
|
$start->name = "Dolly";
|
|
$new = $start->__clone();
|
|
$new->name = "Molly";
|
|
var_dump($start);
|
|
?>
|