<?php

$matches = array();
$regExp= "/(?<=flv-url=).*(?=;)/Ui";
$text = "flv-url=text1234;";
preg_match($regExp, $text, $matches);
var_dump($matches);