11 lines
112 B
Plaintext
11 lines
112 B
Plaintext
$msg = "a"
|
|
class shadowme($msg) {
|
|
$msg = "c"
|
|
if true {
|
|
$msg = "d"
|
|
}
|
|
test $msg {}
|
|
}
|
|
|
|
include shadowme("b")
|