Integrate PHPCMS and TiPask under ucenter, and find that logging in through phpcms can be synchronized to tipask, but quit through phpcms, it cannot be synchronized to the solution of tipask!

In phpcms, the login prompts to log in successfully, check the source code, you can see that the synchronization js notification has been found

In phpcms, the exit prompt is successful 0, check the source code, you can see that the synchronization js notification code is 0
Analyze the code execution process:
1. kchmc.net/phpcms/modules/member/index.php
$SynLogoutstr = $this->client-> ps_member_synlogout();
2. kchmc.net/phpcms/modules/member/classes/client.class.php
Modified to be as follows:
/**
* Synchronized exit
* @param string $UID
* @return string javascript user sync exit js
*/
public function ps_member_synlogout() {
//return $this->_ps_send(synlogout, array());
return $this->_ps_send(synlogout, array(synlogout=>1));
}
3. kchmc.net/phpsso_server/phpcms/modules/phpsso/classes/phpsso.class.php
The reason is what is indicated in the red box:
4. The revised result is as follows:

