thank you jeff for taking the time to look at this and your support
i've got the code from here:
http://stackoverflow.com/a/9785191
when i changed the code to this:
Code: Select all
if (strpos($row['post_text'],'[youtube') !== false) {
preg_match_all('%\[youtube[a-z0-9:][^\]]*\](.*?)\[/youtube%', $row['post_text'],$sMetaResult);
if (preg_match('/youtube\.com\/watch\?v=([^\&\?\/]+)/', $sMetaResult[1],$id)) {
$value = $id[1];
}
if (preg_match('/youtube\.com\/v\/([^\&\?\/]+)/', $sMetaResult[1],$id)) {
$value = $id[1];
}
if (preg_match('/youtu\.be\/([^\&\?\/]+)/', $sMetaResult[1],$id)) {
$value = $id[1];
}
$sMetaBBCVideo[] = $value;
}
then i get the following:
Code: Select all
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1366: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1369: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/viewtopic.php on line 1372: preg_match() expects parameter 2 to be string, array given
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5267: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3997)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5269: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3997)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5270: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3997)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5271: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3997)