2012-03-20 15 views
-1

に削除します。PHPの文字こんにちは私は、下記のテキストを持つ変数を持つ文字列

<p>Not sure exactly which property you want to extract, but I assume it's the 'question_answers_url'.</p> 

<pre><code>$answersArray = Array(); 
for($i=0;$i&lt;count($jsonArray['questions']);$i++){ 
    //assuming it is the 'question_answers_url' property that you want 
    array_push($answersArray,$jsonArray['questions'][$i]['question_answers_url']); 
} 
</code></pre> 

<p>Ought to do it.</p> 

は、どのように私は<p>TEXT_I_WANT</p>間および他のすべてをゴミ箱あるテキストのみを取得することができます。

+0

テキストのどこにでも「

TEXT_I_WANT

」が表示されません。 [何を試しましたか?](http://mattgemmell.com/2008/12/08/what-have-you-tried/) – Graham

+0

どういう意味ですか?私はpの間のテキストをしたい –

+0

私は文字を文字に分割し、それが

答えて

2
preg_match_all("/<p>(.*?)<\/p>/is",$text,$matches,PREG_SET_ORDER); 
foreach($maches as $match){ 
    echo $match[1]; 
} 

未テスト!

更新済み!

+0

警告:preg_match_all():未知の修飾子 'p'が.....であり、警告:foreach()の引数が無効です。 –

関連する問題