Skip to content

Instantly share code, notes, and snippets.

@AbhishekGhosh
Created February 10, 2014 07:00
Embed
What would you like to do?
PHP backticks
<?php
$output = `ls -al`;
echo "<pre>$output</pre>";
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment