thinkphp5 extend目录扩展类的使用

类所在路径:\extend\mikkle\tp_wxpay\WxPayConf_pub.php

在其他类里面使用:

use \mikkle\tp_wxpay\WxPayConf_pub as WxPayConf;

as重新指定类名,便于实例化;

在方法中使用:

$wxpayconf= new WxPayConf();
$wxpayconf->function();



你可能感兴趣的:(php,thinkphp5)