1 頁 (共 1 頁)

[問題]Iframe BBcode(已解決)

發表於 : 2003-12-22 21:20
ilove1291
我的bbcode.php

代碼: 選擇全部

//iframe join by  法蘭庫克 frank 
        $bbcode_tpl['iframe'] = str_replace('{WIDTH}', '\\\1', $bbcode_tpl['iframe']); 
        $bbcode_tpl['iframe'] = str_replace('{HEIGHT}', '\\\2', $bbcode_tpl['iframe']); 
        $bbcode_tpl['iframe'] = str_replace('{URL}', '\\\3', $bbcode_tpl['iframe']);
-------------------------------------------------------------------------------------
// [iframe width= height= ] and [/iframe] code.. 
        $patterns[] = "#\[iframe width=([0-9]?[0-9]?[0-9]) height=([0-9]?[0-9]?[0-9])\](.*?)\[/iframe:$uid\]#si"; 
        $replacements[] = $bbcode_tpl[iframe];
-------------------------------------------------------------------------------------
//[iframe width= heigth=] and [/iframe] 
        $text = preg_replace("#\[iframe width=([0-9]?[0-9]?[0-9]) height=([0-9]?[0-9]?[0-9])\](([a-z]+?)://([^, 

]+))\[\/iframe\]#si","[iframe width=\\\1 height=\\\2\]\\\3[/iframe:$uid]", $text);
我的bbcode.tpl

代碼: 選擇全部

<!-- BEGIN iframe --> 
<iframe marginwidth=0 src="{URL}" width="{WIDTH}" height="{HEIGHT}" allowtransparency="true" scrolling="auto" frameborder="0"></iframe> 
<!-- END iframe -->
然後我po文使用[iframe]出來還是[iframe]並沒有取代為<iframe>的語法
試這功能試了一天QQ
順便問一下 竹貓首頁 版面的左上角有個+號跟-號可以收折跟展開 這是什麼功能?要收循哪個關鍵字??

發表於 : 2003-12-22 21:31
NOFX
收放討論分區

you bbcode.tpl error..........


Support

發表於 : 2003-12-22 21:56
ilove1291
照這裡在作一次\r
http://phpbb-tw.net/phpbb/viewtopic.php ... ght=iframe
還是不行ㄋ
[iframe]還是沒有效果的說 自己打<iframe src="http://xx.htm">就可以 ~"~
早上裝 flash的bbcode就可以的說\r
好詭異喔
-------------------------------
剛剛才發現有個
[紀錄]竹貓星球MOD安裝紀錄
哈 賺到

發表於 : 2003-12-23 00:21
atthis

發表於 : 2003-12-23 10:58
ilove1291
you bbcode.tpl error..........
喔 耶\r
改這樣就好嚕 太棒了

代碼: 選擇全部

<!-- BEGIN iframe --><iframe marginwidth=0 marginheight=0 src="{URL}" frameborder="0" scrolling="no"  allowtransparency="true"></iframe><!-- END iframe -->
i love NOFX