Answers for "replace the first and last element in php array"

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 "replace the first and last element in php array"

Browse Popular Code Answers by Language