Sign in
apache
/
netbeans
/
3f277361c3bdd1d5120c7a7654e8acb61994283a
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
formatting
/
arrays3.php
blob: 88d57df24106f0c255cbd7ad4cb1d48e562f4cd6 [
file
] [
log
] [
blame
]
<?
php
array
(
22
,
"jabko"
,
"hruska"
);
$ar
=
array
(
1
,
2
,
3
,
4
);
class
Test
{
public
$number
=
1
;
private
$arr
=
array
(
"Item 1"
=>
1
,
"Item 2"
=>
2
,
"Item 3"
=>
3
);
public
$number2
=
1
;
}
?>