mirror of
https://github.com/igorsimdyanov/php8.git
synced 2025-08-06 11:10:42 +00:00
21 lines
271 B
PHP
21 lines
271 B
PHP
<?php
|
|
$arr = [
|
|
1,
|
|
[
|
|
"Programs hacking programs. Why?",
|
|
"д'Артаньян"
|
|
]
|
|
];
|
|
echo "<pre>";
|
|
var_export($arr);
|
|
echo "</pre>";
|
|
|
|
class SomeClass
|
|
{
|
|
private $x = 100;
|
|
}
|
|
$obj = new SomeClass();
|
|
echo "<pre>";
|
|
var_export($obj);
|
|
echo "</pre>";
|