PHP 클래스 SimplePie_Item, simplepie

파일 보기 프로젝트 열기: simplepie/simplepie 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
$data array Raw data
$feed SimplePie Parent feed

보호된 프로퍼티들

프로퍼티 타입 설명
$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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/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/ko/site/trends?type=php%7Cf">상위 함수들</a> | <a href="https://hotexamples.com/ko/site/trends?type=php%7Cc"> 상위 클래스들 </a> | <a href="https://doc.hotexamples.com/ko/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/ko/">PHP</a> | <a href="https://csharp.hotexamples.com/ko/">C# (CSharp)</a> | <a href="https://java.hotexamples.com/ko/">Java</a> | <a href="https://golang.hotexamples.com/ko/">Golang</a> | <a href="https://cpp.hotexamples.com/ko/">C++ (Cpp)</a> | <a href="https://python.hotexamples.com/ko/">Python</a> | <a href="https://javascript.hotexamples.com/ko/">JavaScript</a> | <a href="https://typescript.hotexamples.com/ko/">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>