programing

PHP - 어떻게 하면 'PHP - 어떻게 하면 '` 끈으로 또는 끈으로 바꾸거나` 끈으로 또는 끈으로 바꾸거나

javamemo 2023. 10. 17. 19:57
반응형

PHP - 어떻게 하면 '` 끈으로 또는 끈으로 바꾸거나

나는 다음 기능을 많이 사용합니다.

get_search_query() 

검색에서 반환된 값을 가져오고 문자열을 수정하고 사용할 수 있도록 하는 것입니다.

기능을 알아야 다음을 얻을 수 있습니다.<?php the_content(); ?>문자열로서 또는 함수가 반환하는 것을 문자열로 변환하는 방법.

내용은 문단 태그가 있는 간단한 단어일 뿐이지만, 그 기능을 사용하면 태그도 얻을 수 있기 때문에 하이퍼링크에 추가할 수 있도록 텍스트만 받고 싶습니다.

제 생각엔 당신이에요get_the_content(), 잘 문서화 되어있는: http://codex.wordpress.org/Function_Reference/the_content

html 형식의 변수에 저장해야 할 경우 이렇게 하십시오.

apply_filters('the_content',$post->post_content)

WP는 모르지만, 묵시적인 명명 규칙은 다음을 암시할 것입니다.get_the_content(). 구글링을 추가하면 _the_content_with_formating 변형이 나타납니다.

그러나 _content()를 다음과 같이 포장하는 것이 대안이 될 수 있습니다.ob_start()그리고.ob_get_contents()+ob_end(). 후자는 어떤 것이든 돌려줍니다.print그때까지 생산된 생산량.

get_the_content()를 사용하여 문자열을 생성해야 하며 문자열을 포맷할 수 있습니다.

$the_post = get_post();
$the_post->post_content;

이 방법을 사용하여 얻을 수 있는 전체 목록:

[ID] =>
    [post_author] =>
    [post_date] => 
    [post_date_gmt] => 
    [post_content] => 
    [post_title] => 
    [post_excerpt] => 
    [post_status] =>
    [comment_status] =>
    [ping_status] => 
    [post_password] => 
    [post_name] =>
    [to_ping] => 
    [pinged] => 
    [post_modified] => 
    [post_modified_gmt] =>
    [post_content_filtered] => 
    [post_parent] => 
    [guid] => 
    [menu_order] =>
    [post_type] =>
    [post_mime_type] => 
    [comment_count] =>
    [filter] =>

참고:get_the_content무엇과 같은 것을 돌려주지는 않습니다.the_content전시.이를 위해서는 다음을 수행해야 합니다.

$content = apply_filters('the_content', get_the_content());

echo $content;

언급URL : https://stackoverflow.com/questions/4405395/php-how-do-i-get-php-the-content-as-a-string-or-turn-it-into-a-strin

반응형