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
| #include <stdio.h> | |
| #include <string.h> | |
| #define MAX 100 | |
| typedef struct { | |
| char key[50]; | |
| char value[50]; | |
| } DictItem; | |
| DictItem dict[MAX]; | |
| int size = 0; |
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 dunglas/frankenphp | |
| RUN install-php-extensions mysqli pdo_mysql |