Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
In php
$res = substr($res,0,strrpos($res,'.')+7);
is giving NAN, but,
$res = substr($res,0,strrpos($res,'.')+6);
is giving correct result without last number.
When I was testing it on my server it was working without problems.
PS. Only 7 isn't working