<?php class Test{ public $test1 = 5; public $test2 = 3; } $testArr = [1,2,3]; $testAssoc = ["qwe" => "ert", "хуй" => "тест", "2" => "123"]; $testObj = new Test;
Standard input is empty
array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) } object(Test)#1 (2) { ["test1"]=> int(5) ["test2"]=> int(3) } array(3) { ["qwe"]=> string(3) "ert" ["хуй"]=> string(8) "тест" [2]=> string(3) "123" }