<?php
$str = 's_113_2.3gp';
$n = preg_match('/(?<=_)\d+(?=\.)/', $str, $m) ? $m[0] : "";
print($n);
?>