can any one provide me with a regular expression that can convert.
the changes are instead of watch?v= it will be /v/ and rest are all constant.
can anybody help.
can any one provide me with a regular expression that can convert.
the changes are instead of watch?v= it will be /v/ and rest are all constant.
can anybody help.
done by a simple str_replace
$data = str_replace('/watch?v=', '/v/', $data);
Bookmarks