문제

Hello hi have this issue, I call this url:

user_confirm/this.is.fake@gmail.com

then use this:

echo $email = $this->uri->segment(3);

And it outputs:

this_is_fake@gmail_com

Why?

p.s. this is my config:

$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-@';

Thanks!

도움이 되었습니까?

해결책

In system/application/config/config.php set:

$config['uri_protocol']  = 'REQUEST_URI';

This seems to help for many people.

Source:

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top