public static function PubSubHubbub::getEscaper in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/zendframework/zend-feed/src/PubSubHubbub/PubSubHubbub.php \Zend\Feed\PubSubHubbub\PubSubHubbub::getEscaper()
Get the Escaper instance
If none registered, lazy-loads an instance.
Return value
1 call to PubSubHubbub::getEscaper()
- PubSubHubbub::urlencode in vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ PubSubHubbub.php - RFC 3986 safe url encoding method
File
- vendor/
zendframework/ zend-feed/ src/ PubSubHubbub/ PubSubHubbub.php, line 126
Class
Namespace
Zend\Feed\PubSubHubbubCode
public static function getEscaper() {
if (null === static::$escaper) {
static::setEscaper(new Escaper());
}
return static::$escaper;
}