/hphp/test/zend/bad/ext/date/tests/gmmktime_variation2.php
https://github.com/tstarling/hiphop-php · PHP · 95 lines · 54 code · 20 blank · 21 comment · 0 complexity · aa837488bb48444ad39e775f594b8c85 MD5 · raw file
- <?php
- /* Prototype : int gmmktime([int hour [, int min [, int sec [, int mon [, int day [, int year]]]]]])
- * Description: Get UNIX timestamp for a GMT date
- * Source code: ext/date/php_date.c
- * Alias to functions:
- */
- echo "*** Testing gmmktime() : usage variation ***\n";
- // Initialise function arguments not being substituted (if any)
- $hour = 8;
- $sec = 8;
- $mon = 8;
- $day = 8;
- $year = 2008;
- //get an unset variable
- $unset_var = 10;
- unset ($unset_var);
- // define some classes
- class classWithToString
- {
- public function __toString() {
- return "Class A object";
- }
- }
- class classWithoutToString
- {
- }
- // heredoc string
- $heredoc = <<<EOT
- hello world
- EOT;
- // add arrays
- $index_array = array (1, 2, 3);
- $assoc_array = array ('one' => 1, 'two' => 2);
- //array of values to iterate over
- $inputs = array(
- // float data
- 'float 10.5' => 10.5,
- 'float -10.5' => -10.5,
- 'float .5' => .5,
- // array data
- 'empty array' => array(),
- 'int indexed array' => $index_array,
- 'associative array' => $assoc_array,
- 'nested arrays' => array('foo', $index_array, $assoc_array),
- // null data
- 'uppercase NULL' => NULL,
- 'lowercase null' => null,
- // boolean data
- 'lowercase true' => true,
- 'lowercase false' =>false,
- 'uppercase TRUE' =>TRUE,
- 'uppercase FALSE' =>FALSE,
- // empty data
- 'empty string DQ' => "",
- 'empty string SQ' => '',
- // string data
- 'string DQ' => "string",
- 'string SQ' => 'string',
- 'mixed case string' => "sTrInG",
- 'heredoc' => $heredoc,
- // object data
- 'instance of classWithToString' => new classWithToString(),
- 'instance of classWithoutToString' => new classWithoutToString(),
- // undefined data
- 'undefined var' => @$undefined_var,
- // unset data
- 'unset var' => @$unset_var,
- );
- // loop through each element of the array for min
- foreach($inputs as $key =>$value) {
- echo "\n--$key--\n";
- var_dump( gmmktime($hour, $value, $sec, $mon, $day, $year) );
- };
- ?>
- ===DONE===