-1

テキストがあり、二重引用符で囲まれたテキストを見つける必要があります。敵の例

this is the "dummy text for the" content 

私は値を取得する必要がありますdummy text for the

PHPを使用してこれを取得する方法を知っている人はいますか?

またはこれのためのphp関数?

ありがとう

4

1 に答える 1

1
<?php
$subject = 'this is the "dummy text for the" content';
$pattern = '/"(.*?)"/';
preg_match_all($pattern, $subject, $matches, PREG_SET_ORDER);
echo $matches[0][1];
?>
于 2013-02-06T12:57:43.440 に答える