Skip to content

Instantly share code, notes, and snippets.

@asgrim
Created June 30, 2017 12:12
Show Gist options
  • Save asgrim/b1532d84713cb2c95696ce6d30f5f376 to your computer and use it in GitHub Desktop.
Save asgrim/b1532d84713cb2c95696ce6d30f5f376 to your computer and use it in GitHub Desktop.
<?php
class x {
async static function highlightFileContents($path) {
$source = await Amp\File\get($path);
return highlight_string($source, true);
}
}
$highlighted = Amp\wait(x::highlightFileContents("helpers.php"));
var_dump($highlighted);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment