PHP test
Php
code posted
created at 15 Mar 14:37
Edit
|
Back
1
2
3
4
5
6
7
8
9
10
11
12
13
14 |
echo "Hello World";
MyClass::staticMethod();
class A {
private $a;
public function f() {
$this->a = "123";
}
}
$a = new A();
$a->f(); |
170 Bytes in 2 ms with coderay