Files
fast_response/admin/application/api/logic/PersonalLogic.php
Your Name dce091da91 t
2025-03-27 07:52:44 +00:00

25 lines
598 B
PHP
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/*
* description
* authorwh
* email
* createTime{2025/3/27} {14:09}
*/
namespace app\api\logic;
use wanghua\general_utility_tools_php\tool\Tools;
class PersonalLogic extends BaseLogic
{
function getProfile()
{
$url = '/personal/getProfile';
$post_data = [];
Tools::log_to_write_txt(['查询微信好友列表[带昵称],入参:$post_data'=>$post_data]);
$res = $this->curl_post_json($url, $post_data);
Tools::log_to_write_txt(['查询微信好友列表[带昵称],出参:$res'=>$res]);
return $res;
}
}