Lines Matching defs:ifragment
104 * ifragment
108 protected $ifragment = null;
162 || $name === 'ifragment'
307 $target->ifragment = $relative->ifragment;
311 $target->ifragment = null;
669 if (isset($this->normalization[$this->scheme]['ifragment']) && $this->ifragment === $this->normalization[$this->scheme]['ifragment']) {
670 $this->ifragment = null;
736 $this->ifragment,
761 $this->ifragment,
987 * Set the ifragment.
989 * @param string $ifragment
992 public function set_fragment($ifragment)
994 if ($ifragment === null) {
995 $this->ifragment = null;
997 $this->ifragment = $this->replace_invalid_with_pct_encoding($ifragment, '!$&\'()*+,;=:@/?');
1052 if ($this->ifragment !== null) {
1053 $iri .= '#' . $this->ifragment;