Updated 网页授权 (markdown)

安正超 2015-03-19 12:05:55 +08:00
parent fd226d33e1
commit dd44c88f99

@ -26,8 +26,8 @@
## 示例:
```php
// 如果已经授权
if ($wechat->auth->authorized()) {
// 如果已经授权或者 SESSION 未过期
if ($wechat->auth->authorized() || Session::get('logged_open_id')) {
$user = $wechat->auth->user();// 获取已经登录后用户信息
Session::set('logged_open_id', $user['open_id']);