Answers for "php replace last string with dot"

PHP
0

last item coma replace and php

$likes = 'Apple, Samsung, Microsoft';
$likes = preg_replace("/,([^,]+)$/", " and $1", $likes)
Posted by: Guest on September-07-2021

Code answers related to "php replace last string with dot"

Browse Popular Code Answers by Language