heansheng

Results 7 issues of heansheng

原代码:define('IS_CGI', (0 === strpos(PHP_SAPI, 'cgi') || false !== strpos(PHP_SAPI, 'fcgi')) ? 1 : 0); 可不可以写成:define('IS_CGI', ( false !== strpos(PHP_SAPI, ‘cgi')) ? 1 : 0); 省略第一个判断?

### 📜 Description ### 👟 Reproduction steps ./setup.sh ### 👍 Expected behavior succ ### 👎 Actual Behavior with Screenshots same ### 💻 Operating system MacOS ### What browsers are you...

``` func TestJson(t *testing.T) { type info struct { Id int64 `json:"id"` } type test struct { Result []info `json:"result"` } r := `{"result":[{"id":"1"},{"id":"2"}]}` var res1 test var res2 test...