PHP Класс SimplePie_Item, simplepie

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$data array Raw data
$feed SimplePie Parent feed

Защищенные свойства (Protected)

Свойство Тип Описание
$registry SimplePie_Registry Registry object

Открытые методы

Метод Описание
__construct ( SimplePie $feed, array $data ) Create a new item object
__destruct ( ) Remove items that link back to this before destroying this object
__toString ( ) : string Get a string representation of the item
get_author ( integer $key ) : SimplePie_Author | null Get an author for the item
get_authors ( ) : array | null Get all authors for the item
get_base ( array $element = [] ) : string Get the base URL value from the parent feed
get_categories ( ) : SimplePie_Category[] | null Get all categories for the item
get_category ( integer $key ) : SimplePie_Category | null Get a category for the item
get_content ( boolean $content_only = false ) : string | null Get the content for the item
get_contributor ( integer $key ) : SimplePie_Author | null Get a contributor for the item
get_contributors ( ) : array | null Get all contributors for the item
get_copyright ( ) : string Get the copyright info for the item
get_date ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the posting date/time for the item
get_description ( boolean $description_only = false ) : string | null Get the content for the item
get_enclosure ( integer $key, $prefer = null ) : SimplePie_Enclosure | null Get an enclosure from the item
get_enclosures ( ) : SimplePie_Enclosure[] | null Get all available enclosures (podcasts, etc.)
get_feed ( ) : SimplePie Get the parent feed
get_gmdate ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the posting date/time for the item (UTC time)
get_id ( boolean $hash = false, $fn = '' ) : string Get the unique identifier for the item
get_item_tags ( string $namespace, string $tag ) : array Get data for an item-level element
get_latitude ( ) : string | null Get the latitude coordinates for the item
get_link ( integer $key, string $rel = 'alternate' ) : string | null Get a single link for the item
get_links ( string $rel = 'alternate' ) : array | null Get all links for the item
get_local_date ( string $date_format = '%c' ) : integer | string | null Get the localized posting date/time for the item
get_longitude ( ) : string | null Get the longitude coordinates for the item
get_permalink ( ) : string | null Get the permalink for the item
get_source ( ) : SimplePie_Source | null Get the for the item
get_thumbnail ( ) : array | null Get the media:thumbnail of the item
get_title ( ) : string | null Get the title of the item
get_updated_date ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the update date/time for the item
get_updated_gmdate ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the update date/time for the item (UTC time)
sanitize ( string $data, integer $type, string $base = '' ) : string Sanitize feed data
set_registry ( SimplePie_Registry $registry ) Set the registry handler

Описание методов

__construct() публичный Метод

This is usually used by {@see \SimplePie::get_items} and {@see \SimplePie::get_item}. Avoid creating this manually.
public __construct ( SimplePie $feed, array $data )
$feed SimplePie Parent feed
$data array Raw data

__destruct() публичный Метод

Remove items that link back to this before destroying this object
public __destruct ( )

__toString() публичный Метод

Get a string representation of the item
public __toString ( ) : string
Результат string

get_author() публичный Метод

Get an author for the item
public get_author ( integer $key ) : SimplePie_Author | null
$key integer The author that you want to return. Remember that arrays begin with 0, not 1
Результат SimplePie_Author | null

get_authors() публичный Метод

Uses , , or
public get_authors ( ) : array | null
Результат array | null List of {@see \SimplePie_Author} objects

get_base() публичный Метод

Uses
public get_base ( array $element = [] ) : string
$element array
Результат string

get_categories() публичный Метод

Uses , or
public get_categories ( ) : SimplePie_Category[] | null
Результат SimplePie_Category[] | null List of {@see \SimplePie_Category} objects

get_category() публичный Метод

Get a category for the item
public get_category ( integer $key ) : SimplePie_Category | null
$key integer The category that you want to return. Remember that arrays begin with 0, not 1
Результат SimplePie_Category | null

get_content() публичный Метод

Prefers full content over summaries, but will return a summary if full content does not exist. To prefer summaries instead, use {@see \get_description} Uses or (RSS 1.0 Content Module)
С версии: 1.0
public get_content ( boolean $content_only = false ) : string | null
$content_only boolean Should we avoid falling back to the description?
Результат string | null

get_contributor() публичный Метод

Get a contributor for the item
С версии: 1.1
public get_contributor ( integer $key ) : SimplePie_Author | null
$key integer The contrbutor that you want to return. Remember that arrays begin with 0, not 1
Результат SimplePie_Author | null

get_contributors() публичный Метод

Uses
С версии: 1.1
public get_contributors ( ) : array | null
Результат array | null List of {@see \SimplePie_Author} objects

get_date() публичный Метод

Uses , , , , or Note: obeys PHP's timezone setting. To get a UTC date/time, use {@see \get_gmdate}
public get_date ( string $date_format = 'j F Y, g:i a' ) : integer | string | null
$date_format string Supports any PHP date format from {@see http://php.net/date} (empty for the raw data)
Результат integer | string | null

get_description() публичный Метод

Prefers summaries over full content , but will return full content if a summary does not exist. To prefer full content instead, use {@see \get_content} Uses , , or
С версии: 0.8
public get_description ( boolean $description_only = false ) : string | null
$description_only boolean Should we avoid falling back to the content?
Результат string | null

get_enclosure() публичный Метод

Supports the RSS tag, as well as Media RSS and iTunes RSS.
public get_enclosure ( integer $key, $prefer = null ) : SimplePie_Enclosure | null
$key integer The enclosure that you want to return. Remember that arrays begin with 0, not 1
Результат SimplePie_Enclosure | null

get_enclosures() публичный Метод

Supports the RSS tag, as well as Media RSS and iTunes RSS. At this point, we're pretty much assuming that all enclosures for an item are the same content. Anything else is too complicated to properly support.
public get_enclosures ( ) : SimplePie_Enclosure[] | null
Результат SimplePie_Enclosure[] | null List of SimplePie_Enclosure items

get_feed() публичный Метод

Note: this may not work as you think for multifeeds!
public get_feed ( ) : SimplePie
Результат SimplePie

get_gmdate() публичный Метод

Get the posting date/time for the item (UTC time)
См. также: get_date
public get_gmdate ( string $date_format = 'j F Y, g:i a' ) : integer | string | null
$date_format string Supports any PHP date format from {@see http://php.net/date}
Результат integer | string | null

get_id() публичный Метод

This is usually used when writing code to check for new items in a feed. Uses , , or the about attribute for RDF. If none of these are supplied (or $hash is true), creates an MD5 hash based on the permalink, title and content.
public get_id ( boolean $hash = false, $fn = '' ) : string
$hash boolean Should we force using a hash instead of the supplied ID?
Результат string

get_item_tags() публичный Метод

This method allows you to get access to ANY element/attribute that is a sub-element of the item/entry tag. See {@see \SimplePie::get_feed_tags()} for a description of the return value
См. также: http://simplepie.org/wiki/faq/supported_xml_namespaces
С версии: 1.0
public get_item_tags ( string $namespace, string $tag ) : array
$namespace string The URL of the XML namespace of the elements you're trying to access
$tag string Tag name
Результат array

get_latitude() публичный Метод

Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications Uses or
С версии: 1.0
public get_latitude ( ) : string | null
Результат string | null

get_local_date() публичный Метод

Returns the date formatted in the localized language. To display in languages other than the server's default, you need to change the locale with {@link http://php.net/setlocale setlocale()}. The available localizations depend on which ones are installed on your web server.
С версии: 1.0
public get_local_date ( string $date_format = '%c' ) : integer | string | null
$date_format string Supports any PHP date format from {@see http://php.net/strftime} (empty for the raw data)
Результат integer | string | null

get_longitude() публичный Метод

Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications Uses , or
С версии: 1.0
public get_longitude ( ) : string | null
Результат string | null

get_source() публичный Метод

Get the for the item
С версии: 1.1
public get_source ( ) : SimplePie_Source | null
Результат SimplePie_Source | null

get_thumbnail() публичный Метод

Uses
public get_thumbnail ( ) : array | null
Результат array | null

get_title() публичный Метод

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> <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/ru/class/-/SimplePie_Item#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">Результат</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 class="method-descr-full" id="method-get_updated_date"> <div class="row"> <div class="col-md-6"> <h3> get_updated_date() <span class="modifier">публичный</span > <span>Метод</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/ru/method/-/SimplePie_Item/get_updated_date/-" rel="nofollow" title="Исходный код метода SimplePie_Item::get_updated_date"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item#method-get_updated_date" title="Прямая ссылка на документацию по методу SimplePie_Item::get_updated_date"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> Uses <span class='highlight'><atom:updated></span> Note: obeys PHP's timezone setting. To get a UTC date/time, use {@see \get_gmdate} </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> <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/ru/class/-/SimplePie_Item#method-get_updated_date">get_updated_date</a></span> ( <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$date_format</span> = 'j F Y, g:i a' ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <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="param-name"> $date_format </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Supports any PHP date format from {@see http://php.net/date} (empty for the raw data)</td> </tr> <tr> <td class="field-return">Результат</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <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 class="method-descr-full" id="method-get_updated_gmdate"> <div class="row"> <div class="col-md-6"> <h3> get_updated_gmdate() <span class="modifier">публичный</span > <span>Метод</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/ru/method/-/SimplePie_Item/get_updated_gmdate/-" rel="nofollow" title="Исходный код метода SimplePie_Item::get_updated_gmdate"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item#method-get_updated_gmdate" title="Прямая ссылка на документацию по методу SimplePie_Item::get_updated_gmdate"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> Get the update date/time for the item (UTC time) </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 class="field"> См. также: <span>get_updated_date </span> </div> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </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/ru/class/-/SimplePie_Item#method-get_updated_gmdate">get_updated_gmdate</a></span> ( <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$date_format</span> = 'j F Y, g:i a' ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <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="param-name"> $date_format </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Supports any PHP date format from {@see http://php.net/date}</td> </tr> <tr> <td class="field-return">Результат</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <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 class="method-descr-full" id="method-sanitize"> <div class="row"> <div class="col-md-6"> <h3> sanitize() <span class="modifier">публичный</span > <span>Метод</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/ru/method/-/SimplePie_Item/sanitize/-" rel="nofollow" title="Исходный код метода SimplePie_Item::sanitize"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item#method-sanitize" title="Прямая ссылка на документацию по методу SimplePie_Item::sanitize"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> Sanitize feed data </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 class="field"> См. также: <span>SimplePie::sanitize() </span> </div> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </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/ru/class/-/SimplePie_Item#method-sanitize">sanitize</a></span> ( <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$data</span>, <span class="param-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a></span> <span class="param-name">$type</span>, <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$base</span> = '' ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> </td> </tr> <tr> <td class="param-name"> $data </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Data to sanitize</td> </tr> <tr> <td class="param-name"> $type </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a></td> <td>One of the SIMPLEPIE_CONSTRUCT_* constants</td> </tr> <tr> <td class="param-name"> $base </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Base URL to resolve URLs against</td> </tr> <tr> <td class="field-return">Результат</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Sanitized data</td> </tr> </table> </div> </div> </div> <div class="method-descr-full" id="method-set_registry"> <div class="row"> <div class="col-md-6"> <h3> set_registry() <span class="modifier">публичный</span > <span>Метод</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/ru/method/-/SimplePie_Item/set_registry/-" rel="nofollow" title="Исходный код метода SimplePie_Item::set_registry"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item#method-set_registry" title="Прямая ссылка на документацию по методу SimplePie_Item::set_registry"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> This is usually used by {@see \SimplePie_Registry::create} </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"> С версии: <span>1.3 </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/ru/class/-/SimplePie_Item#method-set_registry">set_registry</a></span> ( <span class="param-type">SimplePie_Registry</span> <span class="param-name">$registry</span> ) </td> </tr> <tr> <td class="param-name"> $registry </td> <td class="param-type">SimplePie_Registry</td> <td></td> </tr> </table> </div> </div> </div> <h2>Описание свойств</h2> <div class="property-descr-full" id="prop-data"> <div class="row"> <div class="col-md-6"> <h3 class="name">$data <span>публичное свойство</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item#prop-data" title="Прямая ссылка на документацию по свойству SimplePie_Item::data"> <i class='icon-borderless icon-link'></i> </a> </div> </div> <div class="row"> <div class="col-md-12"> Raw data </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> <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"></td> </tr> --> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="return-type">array</span> <span class="var-name">$data</span> </td> </tr> <tr> <td>Результат</td> <td><a href="http://php.net/manual/en/language.types.array.php">array</a></td> <td></td> </tr> </table> </div> </div> </div> <div class="property-descr-full" id="prop-feed"> <div class="row"> <div class="col-md-6"> <h3 class="name">$feed <span>публичное свойство</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item#prop-feed" title="Прямая ссылка на документацию по свойству SimplePie_Item::feed"> <i class='icon-borderless icon-link'></i> </a> </div> </div> <div class="row"> <div class="col-md-12"> Parent feed </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> <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"></td> </tr> --> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="return-type">SimplePie</span> <span class="var-name">$feed</span> </td> </tr> <tr> <td>Результат</td> <td>SimplePie</td> <td></td> </tr> </table> </div> </div> </div> <div class="property-descr-full" id="prop-registry"> <div class="row"> <div class="col-md-6"> <h3 class="name">$registry <span>защищенное свойство</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item#prop-registry" title="Прямая ссылка на документацию по свойству SimplePie_Item::registry"> <i class='icon-borderless icon-link'></i> </a> </div> </div> <div class="row"> <div class="col-md-12"> Registry object </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 class="field"> См. также: <span>set_registry </span> </div> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </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"></td> </tr> --> <tr> <td colspan="3" class="rendered"> <span class="modifier">protected</span > <span class="return-type">SimplePie_Registry</span> <span class="var-name">$registry</span> </td> </tr> <tr> <td>Результат</td> <td>SimplePie_Registry</td> <td></td> </tr> </table> </div> </div> </div> </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/ru/site/trends?type=php%7Cf">Популярные функции</a> | <a href="https://hotexamples.com/ru/site/trends?type=php%7Cc"> Популярные классы </a> | <a href="https://doc.hotexamples.com/ru/doc/map">Документация</a> | <a href="/site/privacy">Политика конфиденциальности</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/ru/">PHP</a> | <a href="https://csharp.hotexamples.com/ru/">C# (CSharp)</a> | <a href="https://java.hotexamples.com/ru/">Java</a> | <a href="https://golang.hotexamples.com/ru/">Golang</a> | <a href="https://cpp.hotexamples.com/ru/">C++ (Cpp)</a> | <a href="https://python.hotexamples.com/ru/">Python</a> | <a href="https://javascript.hotexamples.com/ru/">JavaScript</a> | <a href="https://typescript.hotexamples.com/ru/">TypeScript</a> </div> </div> <div class="row"> <div class="col-md-12" style="text-align: center"> <a href="https://doc.hotexamples.com/class/-/SimplePie_Item">EN</a> | <a href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item">RU</a> | <a href="https://doc.hotexamples.com/de/class/-/SimplePie_Item">DE</a> | <a href="https://doc.hotexamples.com/fr/class/-/SimplePie_Item">FR</a> | <a href="https://doc.hotexamples.com/es/class/-/SimplePie_Item">ES</a> | <a href="https://doc.hotexamples.com/pt/class/-/SimplePie_Item">PT</a> | <a href="https://doc.hotexamples.com/it/class/-/SimplePie_Item">IT</a> | <a href="https://doc.hotexamples.com/jp/class/-/SimplePie_Item">JP</a> | <a href="https://doc.hotexamples.com/zh/class/-/SimplePie_Item">ZH</a> | <a href="https://doc.hotexamples.com/ko/class/-/SimplePie_Item">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»."});}}], []); });</script></body> </html>