提交 419d7983 authored 作者: chengye's avatar chengye

test

上级 391cf38c
...@@ -40,16 +40,14 @@ class SingleSign { ...@@ -40,16 +40,14 @@ class SingleSign {
$isAdmin = substr($str,$pos,1); $isAdmin = substr($str,$pos,1);
$user['is_admin'] = $isAdmin; $user['is_admin'] = $isAdmin;
dd($str);
if($user['is_admin'] == true) {
$user['username'] = 'gonnadmin';
} else {
preg_match('/adminuser\|s\:(\d+)\:/',$str,$match); preg_match('/adminuser\|s\:(\d+)\:/',$str,$match);
if($match){ if($match){
$pos = stripos($str,'adminuser|s:') + strlen('adminuser|s:'); $pos = stripos($str,'adminuser|s:') + strlen('adminuser|s:');
$pos += strlen($match[1]) + 2; $pos += strlen($match[1]) + 2;
$user['username'] = substr($str,$pos,$match[1]+0); $user['username'] = substr($str,$pos,$match[1]+0);
} }
if($user['is_admin'] == true && $user['username'] == 'admin') {
$user['username'] = 'gonnadmin';
} }
$pos = stripos($str,'ukey|s:10:') + 11; $pos = stripos($str,'ukey|s:10:') + 11;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论