<?php

// your code goes here
$str = "dubai,sharjah,";
$data = implode("','",explode(',',rtrim($str,',')));
echo "'$data'";