PHP code example of creof / wkb-parser

1. Go to this page and download the library: Download creof/wkb-parser library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

creof / wkb-parser example snippets


$parser = new Parser($input);

$value = $parser->parse();

$parser = new Parser();

$value1 = $parser->parse($input1);
$value2 = $parser->parse($input2);