如何代码
$this->access_token = $apiOauth->update_authorizer_access_token($set['appid']);
能写成$this->access_token = file_get_contents("http://xxx.com/xx/xx.php");这样吗?
然后将$apiOauth->update_authorizer_access_token($set['appid'])这段代码写到xx.php文件。那么。这个xx.php文件时的这代码是直接写$apiOauth->update_authorizer_access_token($set['appid'])这段行吗?如果以上错误,正确的写法是什么?谢谢大家了。