What is cached by an opcode cache?
Consider the following code. What can be said about the call to file_get_contents?
$getdata = "foo=bar";
$opts = array('http' =>
array(
'method' => 'POST',
'header' => 'Content-type: application/x-www-form-urlencoded',
'content' => $getdata
)
);
$context = stream_context_create($opts);
$result = false, $context);
When a class is defined as final it:
Which value will be assigned to the key 0 in this example?
$foo = array(true, '0' => false, false => true);