SimplePie::get_title PHP Method

get_title() public method

Uses , </span> or <span class='highlight'><dc:title></span> </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> <div class="field"> Since: <span>1.0 (previously called `get_feed_title` since 0.8)</span> </div> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="method-name"><a class="method-link" href="https://doc.hotexamples.com/es/class/-/SimplePie#method-get_title">get_title</a></span> ( ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></span> </td> </tr> <tr> <td class="field-return">return</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></td> <td></td> </tr> </table> </div> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> <div class="example-item"> <figure class="highlight"> <div class="example" data-id="1"> <pre class="line-numbers"><code class="language-php"> public function get_title() { if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'title')) { return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0])); } elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'title')) { return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0])); } elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'title')) { return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0])); } elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'title')) { return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0])); } elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'title')) { return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0])); } elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'title')) { return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT); } elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'title')) { return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT); } else { return null; } }</code></pre> </div> </figure> </div> </div> </div> <div class="row"> <div class="col-md-12"> <h2>Usage Example</h2> <div class="example-item" id="0x98b48626b02cd4d293dadee22e0a3d19298c89fb1d77bebd829e560a648f35a8-68,,130,"> <div class="bs-example"> <div> <div class="bs-example-title">Ejemplo n.º 1</div> <div style="position: absolute;right: 15px;top: 10px;" id="rating_1" data-hash="0x98b48626b02cd4d293dadee22e0a3d19298c89fb1d77bebd829e560a648f35a8" data-area="68,,130,"> <div class="rating-amount">0</div> <a title="Marcar este ejemplo como bueno" href="javascript:app.addRating(1, '1')" class="rating-up btn btn-success" data-id="rating_1"><i class="icon-button icon-thumbs-up"></i></a> <a title="Marcar este ejemplo como malo" href="javascript:app.addRating(-1,'1')" class="rating-down btn btn-danger" data-id="rating_1"><i class="icon-button icon-thumbs-down"></i></a> </div> </div> <div style="display:flex;align-items: center;flex-wrap: wrap"> <div style="display: inline-block;margin-right: 10px"> <a class="btn btn-default" title="Enlace directo a este ejemplo" href="https://hotexamples.com/es/examples/-/SimplePie/get_title/php-simplepie-get_title-method-examples.html#0x98b48626b02cd4d293dadee22e0a3d19298c89fb1d77bebd829e560a648f35a8-68,,130,"><i class="icon-button icon-link"></i></a> <a rel="nofollow" class="btn btn-default" href="javascript:app.open('https://hotexamples.com/es/site/file?hash=0x98b48626b02cd4d293dadee22e0a3d19298c89fb1d77bebd829e560a648f35a8&fullName=src%2FResources%2Fcontao%2FModuleRssReader.php&project=contao%2Fcore-bundle')">Mostrar archivo</a> </div> <div class="example-project-info"> <nobr> <span>Archivo:</span> <a target="_blank" rel="nofollow" href="https://hotexamples.com/es/site/redirect?url=https%3A%2F%2Fgithub.com%2Fcontao%2Fcore-bundle%2Fblob%2Fmaster%2Fsrc%2FResources%2Fcontao%2FModuleRssReader.php">ModuleRssReader.php</a> </nobr> <nobr> <span>Proyecto:</span> <a target="_blank" rel="nofollow" href="https://hotexamples.com/es/site/redirect?url=https%3A%2F%2Fgithub.com%2Fcontao%2Fcore-bundle">contao/core-bundle</a> </nobr> </div> </div> </div> <figure class="highlight"> <div class="example" data-id="1"> <pre class="line-numbers language-php" data-end="130" data-start="69" data-highlight="25,84"> /** * Generate the module */ protected function compile() { /** @var PageModel $objPage */ global $objPage; if ($this->rss_template != 'rss_default') { $this->strTemplate = $this->rss_template; /** @var FrontendTemplate|object $objTemplate */ $objTemplate = new \FrontendTemplate($this->strTemplate); $this->Template = $objTemplate; $this->Template->setData($this->arrData); } $this->Template->link = $this->objFeed->get_link(); $this->Template->title = $this->objFeed->get_title(); $this->Template->language = $this->objFeed->get_language(); $this->Template->description = $this->objFeed->get_description(); $this->Template->copyright = $this->objFeed->get_copyright(); // Add image if ($this->objFeed->get_image_url()) { $this->Template->image = true; $this->Template->src = $this->objFeed->get_image_url(); $this->Template->alt = $this->objFeed->get_image_title(); $this->Template->href = $this->objFeed->get_image_link(); $this->Template->height = $this->objFeed->get_image_height(); $this->Template->width = $this->objFeed->get_image_width(); } // Get the items (see #6107) $arrItems = array_slice($this->objFeed->get_items(0, intval($this->numberOfItems) + intval($this->skipFirst)), intval($this->skipFirst), intval($this->numberOfItems) ?: null); $limit = count($arrItems); $offset = 0; // Split pages if ($this->perPage > 0) { // Get the current page $id = 'page_r' . $this->id; $page = \Input::get($id) !== null ? \Input::get($id) : 1; // Do not index or cache the page if the page number is outside the range if ($page < 1 || $page > max(ceil(count($arrItems) / $this->perPage), 1)) { throw new PageNotFoundException('Page not found: ' . \Environment::get('uri')); } // Set limit and offset $offset = ($page - 1) * $this->perPage; $limit = $this->perPage + $offset; $objPagination = new \Pagination(count($arrItems), $this->perPage, \Config::get('maxPaginationLinks'), $id); $this->Template->pagination = $objPagination->generate("\n "); } $items = array(); $last = min($limit, count($arrItems)) - 1; /** @var \SimplePie_Item[] $arrItems */ for ($i = $offset, $c = count($arrItems); $i < $limit && $i < $c; $i++) { $items[$i] = array('link' => $arrItems[$i]->get_link(), 'title' => $arrItems[$i]->get_title(), 'permalink' => $arrItems[$i]->get_permalink(), 'description' => str_replace(array('<?', '?>'), array('&lt;?', '?&gt;'), $arrItems[$i]->get_description()), 'class' => ($i == 0 ? ' first' : '') . ($i == $last ? ' last' : '') . ($i % 2 == 0 ? ' even' : ' odd'), 'pubdate' => \Date::parse($objPage->datimFormat, $arrItems[$i]->get_date('U')), 'category' => $arrItems[$i]->get_category(0), 'object' => $arrItems[$i]); // Add author if (($objAuthor = $arrItems[$i]->get_author(0)) != false) { $items[$i]['author'] = trim($objAuthor->name . ' ' . $objAuthor->email); } // Add enclosure if (($objEnclosure = $arrItems[$i]->get_enclosure(0)) != false) { $items[$i]['enclosure'] = $objEnclosure->get_link(); } } $this->Template->items = array_values($items); }</pre> </div> </figure> </div> <a href="https://hotexamples.com/es/examples/-/SimplePie/get_title/php-simplepie-get_title-method-examples.html" class="btn btn-default">All Usage Examples Of SimplePie::get_title</a> </div> </div> </div> <div class="col-md-3"> <div class="bs-example thin"> <div class="bs-example-title">SimplePie</div> </div> <figure class="highlight panel"> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/__call/-"> <i class="icon-small icon-dot-circle"></i> __call </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/__construct/-"> <i class="icon-small icon-dot-circle"></i> __construct </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/__destruct/-"> <i class="icon-small icon-dot-circle"></i> __destruct </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/__toString/-"> <i class="icon-small icon-dot-circle"></i> __toString </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/add_attributes/-"> <i class="icon-small icon-dot-circle"></i> add_attributes </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/enable_cache/-"> <i class="icon-small icon-dot-circle"></i> enable_cache </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/enable_exceptions/-"> <i class="icon-small icon-dot-circle"></i> enable_exceptions </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/enable_order_by_date/-"> <i class="icon-small icon-dot-circle"></i> enable_order_by_date </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/encode_instead_of_strip/-"> <i class="icon-small icon-dot-circle"></i> encode_instead_of_strip </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/error/-"> <i class="icon-small icon-dot-circle"></i> error </a> </div> <div class="protected"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/fetch_data/-"> <i class="icon-small icon-dot-circle"></i> fetch_data </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/force_cache_fallback/-"> <i class="icon-small icon-dot-circle"></i> force_cache_fallback </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/force_feed/-"> <i class="icon-small icon-dot-circle"></i> force_feed </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/force_fsockopen/-"> <i class="icon-small icon-dot-circle"></i> force_fsockopen </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_all_discovered_feeds/-"> <i class="icon-small icon-dot-circle"></i> get_all_discovered_feeds </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_author/-"> <i class="icon-small icon-dot-circle"></i> get_author </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_authors/-"> <i class="icon-small icon-dot-circle"></i> get_authors </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_base/-"> <i class="icon-small icon-dot-circle"></i> get_base </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_categories/-"> <i class="icon-small icon-dot-circle"></i> get_categories </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_category/-"> <i class="icon-small icon-dot-circle"></i> get_category </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_channel_tags/-"> <i class="icon-small icon-dot-circle"></i> get_channel_tags </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_contributor/-"> <i class="icon-small icon-dot-circle"></i> get_contributor </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_contributors/-"> <i class="icon-small icon-dot-circle"></i> get_contributors </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_copyright/-"> <i class="icon-small icon-dot-circle"></i> get_copyright </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_description/-"> <i class="icon-small icon-dot-circle"></i> get_description </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_encoding/-"> <i class="icon-small icon-dot-circle"></i> get_encoding </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_favicon/-"> <i class="icon-small icon-dot-circle"></i> get_favicon </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_feed_tags/-"> <i class="icon-small icon-dot-circle"></i> get_feed_tags </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_image_height/-"> <i class="icon-small icon-dot-circle"></i> get_image_height </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_image_link/-"> <i class="icon-small icon-dot-circle"></i> get_image_link </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_image_tags/-"> <i class="icon-small icon-dot-circle"></i> get_image_tags </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_image_title/-"> <i class="icon-small icon-dot-circle"></i> get_image_title </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_image_url/-"> <i class="icon-small icon-dot-circle"></i> get_image_url </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_image_width/-"> <i class="icon-small icon-dot-circle"></i> get_image_width </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_item/-"> <i class="icon-small icon-dot-circle"></i> get_item </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_item_quantity/-"> <i class="icon-small icon-dot-circle"></i> get_item_quantity </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_items/-"> <i class="icon-small icon-dot-circle"></i> get_items </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_language/-"> <i class="icon-small icon-dot-circle"></i> get_language </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_latitude/-"> <i class="icon-small icon-dot-circle"></i> get_latitude </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_link/-"> <i class="icon-small icon-dot-circle"></i> get_link </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_links/-"> <i class="icon-small icon-dot-circle"></i> get_links </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_longitude/-"> <i class="icon-small icon-dot-circle"></i> get_longitude </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_permalink/-"> <i class="icon-small icon-dot-circle"></i> get_permalink </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_raw_data/-"> <i class="icon-small icon-dot-circle"></i> get_raw_data </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_registry/-"> <i class="icon-small icon-dot-circle"></i> get_registry </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_title/-"> <i class="icon-small icon-dot-circle"></i> get_title </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/get_type/-"> <i class="icon-small icon-dot-circle"></i> get_type </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/handle_content_type/-"> <i class="icon-small icon-dot-circle"></i> handle_content_type </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/init/-"> <i class="icon-small icon-dot-circle"></i> init </a> </div> <div class="public static"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/merge_items/-"> <i class="icon-small icon-dot-circle"></i> merge_items </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/remove_div/-"> <i class="icon-small icon-dot-circle"></i> remove_div </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/sanitize/-"> <i class="icon-small icon-dot-circle"></i> sanitize </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_author_class/-"> <i class="icon-small icon-dot-circle"></i> set_author_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_autodiscovery_cache_duration/-"> <i class="icon-small icon-dot-circle"></i> set_autodiscovery_cache_duration </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_autodiscovery_level/-"> <i class="icon-small icon-dot-circle"></i> set_autodiscovery_level </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_cache_class/-"> <i class="icon-small icon-dot-circle"></i> set_cache_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_cache_duration/-"> <i class="icon-small icon-dot-circle"></i> set_cache_duration </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_cache_location/-"> <i class="icon-small icon-dot-circle"></i> set_cache_location </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_cache_name_function/-"> <i class="icon-small icon-dot-circle"></i> set_cache_name_function </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_caption_class/-"> <i class="icon-small icon-dot-circle"></i> set_caption_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_category_class/-"> <i class="icon-small icon-dot-circle"></i> set_category_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_content_type_sniffer_class/-"> <i class="icon-small icon-dot-circle"></i> set_content_type_sniffer_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_copyright_class/-"> <i class="icon-small icon-dot-circle"></i> set_copyright_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_credit_class/-"> <i class="icon-small icon-dot-circle"></i> set_credit_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_curl_options/-"> <i class="icon-small icon-dot-circle"></i> set_curl_options </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_enclosure_class/-"> <i class="icon-small icon-dot-circle"></i> set_enclosure_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_favicon_handler/-"> <i class="icon-small icon-dot-circle"></i> set_favicon_handler </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_feed_url/-"> <i class="icon-small icon-dot-circle"></i> set_feed_url </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_file/-"> <i class="icon-small icon-dot-circle"></i> set_file </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_file_class/-"> <i class="icon-small icon-dot-circle"></i> set_file_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_image_handler/-"> <i class="icon-small icon-dot-circle"></i> set_image_handler </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_input_encoding/-"> <i class="icon-small icon-dot-circle"></i> set_input_encoding </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_item_class/-"> <i class="icon-small icon-dot-circle"></i> set_item_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_item_limit/-"> <i class="icon-small icon-dot-circle"></i> set_item_limit </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_locator_class/-"> <i class="icon-small icon-dot-circle"></i> set_locator_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_max_checked_feeds/-"> <i class="icon-small icon-dot-circle"></i> set_max_checked_feeds </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_output_encoding/-"> <i class="icon-small icon-dot-circle"></i> set_output_encoding </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_parser_class/-"> <i class="icon-small icon-dot-circle"></i> set_parser_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_rating_class/-"> <i class="icon-small icon-dot-circle"></i> set_rating_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_raw_data/-"> <i class="icon-small icon-dot-circle"></i> set_raw_data </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_restriction_class/-"> <i class="icon-small icon-dot-circle"></i> set_restriction_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_sanitize_class/-"> <i class="icon-small icon-dot-circle"></i> set_sanitize_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_source_class/-"> <i class="icon-small icon-dot-circle"></i> set_source_class </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_stupidly_fast/-"> <i class="icon-small icon-dot-circle"></i> set_stupidly_fast </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_timeout/-"> <i class="icon-small icon-dot-circle"></i> set_timeout </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_url_replacements/-"> <i class="icon-small icon-dot-circle"></i> set_url_replacements </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/set_useragent/-"> <i class="icon-small icon-dot-circle"></i> set_useragent </a> </div> <div class="public static"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/sort_items/-"> <i class="icon-small icon-dot-circle"></i> sort_items </a> </div> <div class="private"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/store_links/-"> <i class="icon-small icon-dot-circle"></i> store_links </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/strip_attributes/-"> <i class="icon-small icon-dot-circle"></i> strip_attributes </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/strip_comments/-"> <i class="icon-small icon-dot-circle"></i> strip_comments </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/strip_htmltags/-"> <i class="icon-small icon-dot-circle"></i> strip_htmltags </a> </div> <div class="public"> <a rel="nofollow" href="https://src.hotexamples.com/es/method/-/SimplePie/subscribe_url/-"> <i class="icon-small icon-dot-circle"></i> subscribe_url </a> </div> </figure> </div> </div> </div> </div> <footer class="footer"> <div class="container"> <div class="row"> <div class="col-md-12" style="text-align: center"> <a href="https://hotexamples.com/es/site/trends?type=php%7Cf">Mejores funciones</a> | <a href="https://hotexamples.com/es/site/trends?type=php%7Cc"> Mejores clases </a> | <a href="https://doc.hotexamples.com/es/doc/map">Documentación</a> | <a href="/site/privacy">Política de privacidad</a> | <a href="https://cpp.hotexamples.com/direct-sales.html">Advertise with us</a> </div> </div> <div class="row"> <div class="col-md-12" style="text-align: center"> <a href="https://hotexamples.com/es/">PHP</a> | <a href="https://csharp.hotexamples.com/es/">C# (CSharp)</a> | <a href="https://java.hotexamples.com/es/">Java</a> | <a href="https://golang.hotexamples.com/es/">Golang</a> | <a href="https://cpp.hotexamples.com/es/">C++ (Cpp)</a> | <a href="https://python.hotexamples.com/es/">Python</a> | <a href="https://javascript.hotexamples.com/es/">JavaScript</a> | <a href="https://typescript.hotexamples.com/es/">TypeScript</a> </div> </div> <div class="row"> <div class="col-md-12" style="text-align: center"> <a href="https://src.hotexamples.com/method/-/SimplePie/get_title/-">EN</a> | <a href="https://src.hotexamples.com/ru/method/-/SimplePie/get_title/-">RU</a> | <a href="https://src.hotexamples.com/de/method/-/SimplePie/get_title/-">DE</a> | <a href="https://src.hotexamples.com/fr/method/-/SimplePie/get_title/-">FR</a> | <a href="https://src.hotexamples.com/es/method/-/SimplePie/get_title/-">ES</a> | <a href="https://src.hotexamples.com/pt/method/-/SimplePie/get_title/-">PT</a> | <a href="https://src.hotexamples.com/it/method/-/SimplePie/get_title/-">IT</a> | <a href="https://src.hotexamples.com/jp/method/-/SimplePie/get_title/-">JP</a> | <a href="https://src.hotexamples.com/zh/method/-/SimplePie/get_title/-">ZH</a> | <a href="https://src.hotexamples.com/ko/method/-/SimplePie/get_title/-">KO</a> </div> </div> <div class="row"> <div class="col-md-10 col-md-offset-1"> </div> <div class="col-md-1"> <!--LiveInternet counter--> <script type="text/javascript"><!-- document.write("<a href='//www.liveinternet.ru/click' " + "target=_blank><img src='//counter.yadro.ru/hit?t44.6;r" + escape(document.referrer) + ((typeof (screen) == "undefined") ? "" : ";s" + screen.width + "*" + screen.height + "*" + (screen.colorDepth ? screen.colorDepth : screen.pixelDepth)) + ";u" + escape(document.URL) + ";" + Math.random() + "' alt='' title='LiveInternet' " + "border='0' width='31' height='31'><\/a>"); //--></script><!--/LiveInternet--> </div> </div> </div> </footer> <script src="//ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="/assets/30dd86a6f06b64184847037c52c63e07aa3c9a26.js"></script> <script>jQuery(function ($) { jQuery('#search-form').yiiActiveForm([{"id":"searchform-lang","name":"lang","container":".field-searchform-lang","input":"#searchform-lang","enableAjaxValidation":true},{"id":"searchform-search","name":"search","container":".field-searchform-search","input":"#searchform-search","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Search no puede estar vacío."});}}], []); });</script></body> </html>