[ create a new paste ] login | about

Link: http://codepad.org/wrfm5X7j    [ raw code | output | fork ]

PHP, pasted on Dec 20:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?
class Products 
{
    public function get(){
        return functions::mssql_escape_string_rev();
    }
}

class functions
{
    public static function mssql_escape_string_rev()
    {
        echo 'mssql_escape_string_rev';
    }
}

$p = new Products();
$p->get();
?>


Output:
1
mssql_escape_string_rev


Create a new paste based on this one


Comments: