mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 14:37:41 -07:00
16 lines
202 B
PHP
16 lines
202 B
PHP
<?php
|
|
|
|
/*
|
|
Asatru PHP - example helper
|
|
*/
|
|
|
|
/**
|
|
* Just an example helper function
|
|
*
|
|
* @param int $max
|
|
* @return int
|
|
*/
|
|
function MyExampleHelperFunction($max = 1000)
|
|
{
|
|
return rand(1, $max);
|
|
} |