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.
PHP 文字列を分割しようとしていますが、最初の文字列には区切り文字が含まれていますが、2 番目の文字列には含まれていません
$string = "abc==123";
私が正確に欲しいのは取得することです
$string['0'] = "abc=="; $string['1'] = "123";
手伝ってくれてありがとう
関数strstrが必要だと思います
http://us1.php.net/strstr
PHPのexplode関数を使えば、
$data = "abc==123"; $result = explode("==", $data); echo $result[0]. "=="; echo $result[1];