remove everything after first comma from string in php

后端 未结 5 2036
闹比i
闹比i 2020-12-31 21:13

I want to remove everything(including the comma) from the first comma of a string in php eg.

$print=\"50 days,7 hours\";

should become \"50

5条回答
  •  离开以前
    2020-12-31 21:47

    This should work for you:

    $r = (strstr($print, ',') ? substr($print, 0, strpos($print, ',')) : $print);
    # $r contains everything before the comma, and the entire string if no comma is present
    

提交回复
热议问题