分割文字列のヘルプ~~! ! !
このような文字列の束があります:
/xxxx/zzzz/vvvv/bbbb/default_head/user1.gif
/video/templates/templates/images/default_head/user2.gif
.. ...
/xxxx/zzzz/vvvv/bbbb/default_head/user14.gif
ユーザーの後と「.」の前の数字 (1、2、14 など)
-----解決策---------
<?php $str='/xxxx/zzzz/vvvv/bbbb/default_head/user14.gif'; preg_match('/(d+).[^.]+/',$str,$match); エコー $match[1];