Jump to content
php.lv forumi

BBcode [video][/video]


gaziks52

Recommended Posts

$find = array(
"'\[b\](.*?)\[/b\]'is",
"'\[i\](.*?)\[/i\]'is",
"'\[u\](.*?)\[/u\]'is",
"'\[size=(.*?)\](.*?)\[/size\]'is",
"'\[color=(.*?)\](.*?)\[/color\]'is",
"'\[img\](.*?)\[/img\]'i",
"'\[url\](.*?)\[/url\]'i",
"'\[url=(.*?)\](.*?)\[/url\]'i"
);

$replace = array(
"<b>\\1</b>",
"<i>\\1</i>",
"<u>\\1</u>",
"<span style=\"font-size:\\1px;\">\\2</span>",
"<span style=\"color:\\1;\">\\2</span>",
"<img src=\"\\1\"/>",
"<a href=\"\\1\">\\1</a>",
"<a href=\"\\1\">\\2</a>"
);
$output = preg_replace($find,$replace,$input);

 

tātad ja ir šāds kods kā vislabāk būtu aizstāt tagus lai vienlīdz labi varētu ielikt video no metacafe.com , youtube.com utt. jo

tur ir atšķirīgi to video parametri piem. loga izmēri????

Edited by gaziks52
Link to comment
Share on other sites

Nu tāpat kā tu izvelc to, kas ir, piemēram, [ b ] tagos, tikai izvilkto rezultātu padod caur citu funkciju, kas pārbauda vai video id ir derīgs un no kurienes tas vispār nāk.

 

Runājot par video plejera izmēriem - protams, būs foršāk, ja plejera izmērs būs pielāgots video izmēram, bet principā lielākā daļa (ja ne visi) plejeri prot proporionāli samazināt/palielināt video, lai tas maksimāli pielāgotos plejera izmēram.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...