mirror of
https://github.com/awslabs/aws-crt-php.git
synced 2026-08-17 17:47:12 +00:00
* Added php7 library skeleton * Re-worked Makefile.frag to use paths correctly * Added gitignore for lib * clang-format * Remove symlinked api.h * Copy api.h into lib/ as part of build
8 lines
113 B
PHP
8 lines
113 B
PHP
<?php
|
|
require_once('crt.php');
|
|
|
|
$crt = new CRT();
|
|
$crt->init();
|
|
var_dump($crt->error_name(0));
|
|
$crt->clean_up();
|