Example #1
0
<?php

// Ensure that count() and conversion to boolean work with proxy arrays
$x = ezc_create_cloneable_in_array();
print count($x) . "\n";
ezc_call(function ($x) {
    print $x ? "true\n" : "false\n";
}, array());
Example #2
0
<?php

try {
    ezc_call(function () {
        throw new Exception("test");
    });
} catch (Exception $e) {
    var_dump($e);
}