- var_dump: documentation ( source)
<?php
class Person
{
/**
* @var string
*/
public $name;
/**
* @param string
*/
public function __construct($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
}
$person = new Person(1000);
var_dump($person);
$anotherPerson = new Person($person);
var_dump($anotherPerson);