This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Create a random string $l characters in length. | |
| * | |
| * @link http://www.php.net/manual/en/ref.strings.php#84888 | |
| * @param int $l number of characters (default: 10) | |
| * @return string the random string | |
| */ | |
| function random_string($l = 10) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pkgutil import extend_path | |
| __base_path__ = __path__ | |
| __path__ = extend_path(__path__, __name__) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pkgutil import extend_path | |
| __base_path__ = __path__ | |
| __path__ = extend_path(__path__, __name__) |
NewerOlder