E:\code\yaf_demo\application\modules\User\controllers\User.php
我們提供的服務(wù)有:網(wǎng)站設(shè)計(jì)、成都網(wǎng)站建設(shè)、微信公眾號開發(fā)、網(wǎng)站優(yōu)化、網(wǎng)站認(rèn)證、漣源ssl等。為上千余家企事業(yè)單位解決了網(wǎng)站和推廣的問題。提供周到的售前咨詢和貼心的售后服務(wù),是有科學(xué)管理、有技術(shù)的漣源網(wǎng)站制作公司
showAction
$userModel = new UserModel();
echo $userModel->getUserInfo($userId);
E:\code\yaf_demo\application\models\User.php
public function getUserInfo($userId)
{
//數(shù)據(jù)庫操作
$userDao = new Dao\UserModel();
echo $userinfo = $userDao->getUserInfo($userId);
//接口調(diào)用
$userBbs = new Interfaces\BbsModel();
echo $userBbs->getBbsInfo($userId);
//return '用戶信息:'.$userId;
return [$userinfo,$userBbs];
}