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.
次のようなドット形式の文字列があります。1.1.3
1.1.3
substringこの文字列の最初から最後の「。」の位置まで取得したい。-1、つまり1.1。
substring
1.1
それを達成する方法は?
$versionstring = "1.1.3"; echo substr($versionstring,0,strrpos($versionstring,"."));
mb_substr($string,0,strpos($string, "."));