0303 php functions

2721 단어 phpTILTIL

microtime()

🔗
Return current Unix timestamp with microseconds.

<?php
function microtime_float()
{
    list($usec, $sec) = explode(" ", microtime());
    return ((float)$usec + (float)$sec);
}
echo microtime_float();
?>

strpos()

🔗
Find the numeric position of the first occurrence of needle in the haystack string.

strpos ( string $haystack , string $needle , int $offset = 0 ) : int|false

좋은 웹페이지 즐겨찾기