- PHP Under The Hood - Anthony Ferrara
- PHP Under the Hood - Marcelo Camargo
- PHP Under The Hood - Johannes Schlüter
- How PHP Works - Behind The Scene - Jamir Hossain
- Zend Engine: Entendendo o Motor Que Impulsiona o PHP - Jéssica Félix
- What is PHP Opcode? - Benoit Jacquemont
- PHP Internals for the Inquisitive Developer - Jeremy Mikola
- Conheça o Opcache - Vinícius Dias
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM php:5.6-apache | |
| RUN apt-get update && apt-get install -y libpq-dev && docker-php-ext-install pdo pdo_pgsql | |
| COPY src/ /var/www/html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Exemples : | |
| <a href="posts/2" data-method="delete" data-token="{{csrf_token()}}"> | |
| - Or, request confirmation in the process - | |
| <a href="posts/2" data-method="delete" data-token="{{csrf_token()}}" data-confirm="Are you sure?"> | |
| */ | |
| (function() { | |