class Index
{
public function index()
input = new WxPayUnifiedOrder();
//Set input->SetBody('Test Produkt');
//Bestellnummer festlegen
$input- >SetOut_trade_no(date('YmdHis'));
//Bestellbetrag festlegen (Einheit: Cent)
$input-> ;SetTotal_fee('1');
// Asynchrone Benachrichtigungsadresse festlegen
$input-> ;SetNotify_url('http://www.php.wx/index.php/index/Notify/index');
// Transaktionstyp festlegen
$input->SetTrade_type('NATIVE');
// Legen Sie fest Produkt-ID
$input->SetProduct_id('123456780');
// Aufruf der einheitlichen Bestell-API
$result= WxPayAPI::unifiedOrder ($ input);
// zweidimensionalen Code generieren
$ code_url = $ result ['code_url'];
$ img = '& lt; img src = http: //paysdk.weixin.qq.com/example/qrCode.' ;
echo $img;
可以了吗?