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.
私の英語でごめんなさい。ちょっとした質問があります: 次のような変数があります:
$a = '123-abc';
私の質問は、変数 $a で数値 123 を取得するにはどうすればよいですか?
助けてくれてありがとう:D
// what you want is $ret[0] $ret = explode('-', $a); echo $ret[0];
substr($a, 0, strpos($a, '-'));
また
preg_match('~^[^-]+~', $a, $matches); var_dump($matches);