<?php

$str = '[texttext]texttext[gjgjgjg][some]texttexttext[/some]';

$bb_codes = array(
	'#\[some\](.*?)\[/some\]#i'
	);
	
$html_tags = array(
	'<span>$1</span>'
	);
	
$str = preg_replace($bb_codes, $html_tags, $str);

echo $str;

?>