mirror of
https://github.com/danog/docker-php-extension-installer.git
synced 2024-12-03 09:57:52 +01:00
13 lines
286 B
PHP
Executable File
13 lines
286 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
|
|
$serialized = ion\serialize(ion\Symbol\PHP::asTable());
|
|
$unserialized = ion\unserialize($serialized);
|
|
if (!$unserialized instanceof ion\Symbol\Table) {
|
|
fwrite(STDERR, "ion doesn't seem to be working\n");
|
|
exit(1);
|
|
}
|
|
echo "ion is working.\n";
|
|
|
|
return 0;
|