Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
何かの前に針を取得して、文字列から針を取り出すにはどうすればよいですか?
コード:
$test = "The quick (brown fox jumps over the lazy dog)";
quick文字列からThe を取得する必要があります
quick
私は爆発を使用しようとしましたが、針の後ろにあるものしか取得できません。
echo substr($test, 0, strpos($test, '('));
$test = "The quick (brown fox jumps over the lazy dog)"; $result = explode("(", $test); echo $result['0']; // The quick