This document summarizes Julien Pauli's presentation on PHP 7 performance optimizations compared to PHP 5. It discusses profiling a Symfony application under PHP 5 and PHP 7, showing PHP 7 runs 23% faster with an opcode cache. Key PHP 7 optimizations discussed include a more efficient zval structure reducing variable size, more compact and cache-friendly hashtable design, and optimized string handling with the zend_string structure. Various virtual machine operations like array operations, casts, and concatenations also see significant performance gains in PHP 7.