Buna benzer bir yapıya sahip bir kod
function bbcode($Text)
{ //$Text = preg_replace("/\[video\](.+?)\[\/video\]/",embed_video($1), $Text);
return $Text;}
function embed_video($url){
if (preg_match("/http:\/\/www.youtube.com\/watch\?v=([0-9a-zA-Z-_]*)(.*)/i", $url, $matches)) {
return '<object width="425" height="350">'.
'<param name="movie" value="http://www.youtube.com/v/'.$matches[1].'" />'.
'<param name="wmode" value="transparent" />'.
'<embed src="http://www.youtube.com/v/'.$matches[1].'&autoplay="0" type="application/x-shockwave-flash" wmode="transparent" width="425" height="350" />'.
'</object>';
}
return $url;
}
$lolcakes = "[video]http://youtube.com/id/xxxxxxpron[/video]";
$lolcakesconverted = bbcode($lolcakes);
Sorun bana bir hata geri tükürür olduğunu.
Hata Ayrıştırma: bekliyor, sözdizimi hatası, beklenmedik T_LNUMBER T_VARIABLE veya '$'
I BBCode fonksiyonunun preg_replace içinde embed_video arayabilirsiniz konusunda herhangi bir fikir var mı?
Teşekkürler!