2013-06-12 1 views
0

mySQL 데이터베이스의 HTML 태그를 SEO 메타 설명의 일반 텍스트로 제거하려고합니다. 데이터베이스의 HTML은 다음과 같습니다SEO 용 PHP에서 태그를 공백으로 바꾸십시오. 메타 설명

내가 포맷은 다음 PHP를 사용하고
<p>The Break-ezee is a vital piece of equipment for anyone when breaking horses - As used by Mary King.</p> 
<p></p> 
<p>The Break-ezee is an all in one progressive training product for use when breaking horses.</p> 

가 :

<meta name="description" content="The Break-ezee is a vital piece of equipment for anyone when breaking horses - As used by Mary King. 

The Break-ezee is an all in one progressi" /> 
:

$showseodesc = trim(strip_tags(substr($showseoproduct['text'],0,160))); 

이이 사이트의 소스에서 다음을 보여줍니다

어쨌든 공백이 없도록 태그 (이 경우 <p>)를 바꿀 수 있습니까?

내가 이상적으로 같이하는 메타 설명을 찾고 있어요 :

<meta name="description" content="The Break-ezee is a vital piece of equipment for anyone when breaking horses - As used by Mary King. The Break-ezee is an all in one progressi" /> 

을 또한, 나는 구글은 메타 설명을위한 별도의 공간을 선택하지 않는 생각에 수정입니까?

많은 도움에 감사드립니다.

답변

1

당신은 str_replace

$showseodesc = str_replace(array('<p>', '</p>'), '', $showseodesc);

$showseodec = substr($showseoproduct['text'],0, 160);

0

는 정규 표현식을 사용하여,이 시도 사용할 수 있습니다.

$string = "<p>The Break-ezee is a vital piece of equipment for anyone when breaking horses - As used by Mary King.</p>"; 

print preg_replace("|<[^>]+>|si","",$string); // <-- strip all tags from a string. 

print preg_replace("|<p[^>]*>|si","",$string); // <-- strip all <p...> tags from a string. 
0

이 시도 : 하나 개의 공간으로 모든 줄 바꿈을 변경

$showseodesc = trim(
        preg_replace("/\n+/"," " , 
           strip_tags(
             substr($showseoproduct['text'], 0, 160) 
             ) 
           ) 
        ); 

preg_replace을.

0

않는 str_replace이 충분하다 : -

$html = "<p>The Break-ezee is a vital piece of equipment for anyone when breaking horses - As used by Mary King.</p> 
<p></p> 
<p>The Break-ezee is an all in one progressive training product for use when breaking horses.</p>"; 

echo str_replace(array('<p>', '</p>'), '', $html); 

출력 : - 말을 깨는 경우

브레이크 - ezee 누구를위한 장비의 중요한 조각이다 - 메리 킹에서 사용 된 바와 같이. Break-ezee는 말을 끊을 때 사용할 수있는 진보적 인 훈련 용 제품입니다.

관련 문제