Set the iuserinfo.
Parameters
$iuserinfo
stringrequired
Source
protected function set_userinfo($iuserinfo) {
if ($iuserinfo === null) {
$this->iuserinfo = null;
}
else {
$this->iuserinfo = $this->replace_invalid_with_pct_encoding($iuserinfo, '!$&\'()*+,;=:');
$this->scheme_normalization();
}
return true;
}
User Contributed Notes
You must log in before being able to contribute a note or feedback.