$name = scraperwiki::get_var('name', 'Unknown'); echo "Name: " . $name;
$last_run = scraperwiki::get_var('last_run', 'Never'); echo "Last Run: " . $last_run;In this example, we retrieve the value of the variable 'last_run' from the Scraperwiki datastore. If the variable does not exist in the datastore, we set the default value to 'Never'. The value of the variable is then stored in the $last_run variable, which is then printed out to the console. The get_var function is part of the Scraperwiki library, which is a package library for PHP.