Đối với các biến đơn giản, việc đọc đầu ra nên đơn giản. Dưới đây là một số ví dụ hiển thị đầu tiên một biến được xác định trong PHP, sau đó biểu diễn kết xuất của nó:
Kiểm tra liên kết này để tham khảo tốt hơn
Ví dụ:
$var = [
'a simple string' => "in an array of 5 elements",
'a float' => 1.0,
'an integer' => 1,
'a boolean' => true,
'an empty array' => [],
];
dump($var);
Mũi tên màu xám là nút chuyển đổi để ẩn / hiển thị con của các cấu trúc lồng nhau.
$var = "This is a multi-line string.\n";
$var .= "Hovering a string shows its length.\n";
$var .= "The length of UTF-8 strings is counted in terms of UTF-8 characters.\n";
$var .= "Non-UTF-8 strings length are counted in octet size.\n";
$var .= "Because of this `\xE9` octet (\\xE9),\n";
$var .= "this string is not UTF-8 valid, thus the `b` prefix.\n";
dump($var);
class PropertyExample
{
public $publicProperty = 'The `+` prefix denotes public properties,';
protected $protectedProperty = '`#` protected ones and `-` private ones.';
private $privateProperty = 'Hovering a property shows a reminder.';
}
$var = new PropertyExample();
dump($var);