Voting

: min(three, two)?
(Example: nine)

The Note You're Voting On

varuninorbit at yahoo dot co dot in
8 years ago
here is a simple example to use namespace

<?php

namespace app\a{
class
one{
public static function
_1(){
echo
'a one _1<br>';
}
}
}

namespace
app\b{
class
one{
public static function
_2(){
echo
'b one _2<br>';
}
}
}

namespace
app{

echo
a\one::_1();
echo
b\one::_2();
echo
a\two::_1();
}

namespace
app\a{
class
two{
public static function
_1(){
echo
'a two _1<br>';
}
}
}

prints
a one _1
b one _2
a two _1

<< Back to user notes page

To Top