且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

PHP递归函数返回null而变量有值

更新时间:2023-11-13 20:35:40

你忘记返回递归调用的结果:

You forgot to return the result of the recursion call:

return $this->checkAlias($result_string);