1) Write a function to accept seconds and print time in format hh:mm:ss
2) If the same function is to be used multiple times how would we optimize the code so that we don’t have to calculate it each time. (hint: use static)
function formatTime($seconds) { if !($seconds) { return ""; } static $timeArray = array(); if (isset($timeArray[$seconds])) { echo "using cache\n"; return $timeArray[$seconds]; } $origSeconds = $seconds; $hours = floor($seconds / 3600); $seconds = $seconds % 3600; $mins = floor($seconds / 60); $seconds = $seconds % 60; $ret = sprintf("%02d::%02d::%02d", $hours, $mins, $seconds); $timeArray[$origSeconds] = $ret; return ($ret); }
Another example of memoizing a function:
$memoize = function($func)
{
return function() use ($func)
{
static $cache = [];
$args = func_get_args();
$key = md5(serialize($args));
if ( ! isset($cache[$key])) {
$cache[$key] = call_user_func_array($func, $args);
}
return $cache[$key];
};
};
$fibonacci = $memoize(function($n) use (&$fibonacci)
{
return ($n < 2) ? $n : $fibonacci($n - 1) + $fibonacci($n - 2);
});
3) Can cookies be stolen ?
Yes cookies can be stolen. XSS is one way to do it.
https://www.go4expert.com/articles/stealing-cookie-xss-t17066/
4) Interface vs Abstract class
5) When does the page on screen get refreshed ?
Repainting and Reflowing
http://frontendbabel.info/articles/webpage-rendering-101/
http://www.phpied.com/rendering-repaint-reflowrelayout-restyle/
http://taligarsiel.com/Projects/howbrowserswork1.htm