Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
semantic
/
class004.php
blob: 6b8f23327eae132017c65fe8b34caecb65328617 [
file
] [
log
] [
blame
]
<?
php
class
test
{
private
function
f1
()
{
return
0
;
}
private
function
f2
()
{
return
1
;
}
public
function
f3
()
{
return
$this
->
f1
();
}
}
?>