PHP Classes

File: example_Condition.php

Recommend this page to a friend!
  Classes of Gobinath Mallaiyan   Random Password Generator   example_Condition.php   Download  
File: example_Condition.php
Role: Example script
Content type: text/plain
Description: Example for the Random Password Generator with Condition
Class: Random Password Generator
Generate random alphanumeric password strings
Author: By
Last change:
Date: 19 years ago
Size: 208 bytes
 

Contents

Class file image Download
<?php
include_once("rndConditionPass.class.php");
$condition = array('caps'=>2, 'small'=>3, 'nums'=>2, 'specs'=>2);
$pass=new rndConditionPass(7,$condition);
$tmppass=$pass->PassGen();
echo
$tmppass;
?>