preg_match(): Compilation failed: invalid range in character class at offset

后端 未结 4 656
野的像风
野的像风 2020-11-22 15:31

Thank you in advance for you time in helping with this issue..

preg_match(): Compilation failed: invalid range in character class at offset 20 sessio

4条回答
  •  南笙
    南笙 (楼主)
    2020-11-22 16:17

    i have this error and i solve it by doing this

    Route::get('{path}','HomeController@index')->where( 'path', '([A-z]+)?' );

    and it is work for me.

提交回复
热议问题