Javascript debugger
Website design
↑
Returns TRUE
if the function's return value is used by the calling scope,
otherwise FALSE
<?php
function foo() {
var_dump(runkit_return_value_used());
}
foo();
$f = foo();
?>
The above example will output:
bool(false)
bool(true)