Source for file sample.php
Documentation is available at sample.php
* @see Microsoft_AutoLoader
require_once dirname(__FILE__ ) . '/../../AutoLoader.php';
* @command-handler sample
* @command-handler-description Sample command.
* @command-handler-header Windows Azure SDK for PHP
* @command-handler-header (C) RealDolmen 2011 - www.realdolmen.com
* @command-description Prints Hello, World!
* @command-parameter-for $name Microsoft_Console_Command_ParameterSource_Argv|Microsoft_Console_Command_ParameterSource_Env|Microsoft_Console_Command_ParameterSource_StdIn --name|-n Required. Name to say hello to.
* @command-parameter-for $bePolite Microsoft_Console_Command_ParameterSource_Argv -p Optional. Switch to enable polite mode or not.
* @command-example Print "Hello, Maarten! How are you?" (using polite mode):
* @command-example hello -n="Maarten" -p
echo 'Hello, ' . $name . '.';
* What time is it command
* @command-name timestamp
* @command-description Prints the current timestamp.
|