Iri::set_userinfo( string $iuserinfo ): bool

In this article

Set the iuserinfo.

Parameters

$iuserinfostringrequired

Return

bool

Source

 * @return bool
 */
protected function set_userinfo($iuserinfo) {
	if ($iuserinfo === null) {
		$this->iuserinfo = null;
	}
	else {
		$this->iuserinfo = $this->replace_invalid_with_pct_encoding($iuserinfo, '!$&\'()*+,;=:');
		$this->scheme_normalization();
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.