Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
semantic
/
class003.php
blob: ef9aab8a7f3c06bee7a054fd4ed2227922709662 [
file
] [
log
] [
blame
]
<?
php
class
User
{
public
$x
;
protected
$y
;
private
$p1
;
private
$p2
;
function
f1
(
$name
)
{
$this
->
p1
=
$name
;
}
}
?>