This commit is contained in:
aozhiwei 2023-08-10 16:15:08 +08:00
parent b572887ca2
commit b599b999a5
2 changed files with 13 additions and 1 deletions

@ -1 +1 @@
Subproject commit 55e2f9deb1eb1eede1e8c390c7bd166528632e8a
Subproject commit 85b467ba2eca1f843f0f988823741c0d00b2724d

View File

@ -103,6 +103,18 @@ class ToolsController extends BaseController {
myself()->_rspOk();
}
public function isSameSeriesAccount()
{
$accountId1 = getReqVal('account_id1', '');
$accountId2 = getReqVal('account_id2', '');
error_log(phpcommon\extractOpenId($accountId1));
error_log(phpcommon\extractRealOpenId(phpcommon\extractOpenId($accountId1)));
error_log($accountId1 . ' **** ' . $accountId2 . ' ' .
phpcommon\isSameSeriesAccount($accountId1, $accountId2));
myself()->_rspData(array(
));
}
private function writeToFile($fileName, $data)
{