Requests_IRI::set_fragment( string $ifragment )
Set the ifragment.
Description Description
Parameters Parameters
- $ifragment
-
(string) (Required)
Return Return
(bool)
Source Source
File: wp-includes/Requests/IRI.php
protected function set_fragment($ifragment) { if ($ifragment === null) { $this->ifragment = null; } else { $this->ifragment = $this->replace_invalid_with_pct_encoding($ifragment, '!$&\'()*+,;=:@/?'); $this->scheme_normalization(); } return true; }
Expand full source code Collapse full source code View on Trac