可能大家都懂這些
pay
interface Ipay
{
function withmoney();
//function withinternet();
}
class Dmeng implements Ipay
{
function withmoney()
{
echo "花人民幣買東西";
}
function withinternet()
{
return "用網銀支付";
}
}
usei
include_once
class main
{
function run($vc)
{
$this
$this
echo "yunxing";
}
}
$com= new main();
$com
就是上面那樣
From:http://tw.wingwit.com/Article/program/PHP/201311/21004.html