Iri::set_userinfo( string $iuserinfo ): bool

In this article

Set the iuserinfo.

Parameters

$iuserinfostringrequired

Return

bool

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.