<slide>
<image filename="php7trans-200.png" />
<break/>

<blurb>✔ ---Tie Advanced X1 Operator---<br/>Spaceship Operator → Enterprise Software</blurb>
<image filename="php-enterprise.jpg" align="right"/>
<example><![CDATA[
<?php

function cmp_php5($a, $b) {
    return ($a < $b) ? -1 : (($a >$b) ? 1 : 0);
}

function cmp_php7($a, $b) {
    return $a <=> $b;
}
?>]]></example>

</slide>
