PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Luke   Honey Pot   ???   Download  
File: ???
Role: Example script
Content type: text/plain
Description: example of the generation script, creates 50 random email addresses
Class: Honey Pot
Creates valid random e-mail addresses
Author: By
Last change:
Date: 21 years ago
Size: 4,009 bytes
 

Contents

Class file image Download
<?php
require_once("honeyPot.class.php");
echo
"<html><head><title>Addresses</title></head><body>\n";

$emails = new honeyPot();

$emails->addresses = 50;

echo
"<pre>";
print_r($emails->createAddressArray());
echo
"</pre>";

echo
"<br><br>\n\n";

$emails->displayAddresses();
$emails->displayTimeTaken();

echo
"</body></html>";

/*
This Page Outputs the following:

Array
(
    [0] => [email protected]
    [1] => [email protected]
    [2] => [email protected]
    [3] => ox_hcnt@dq25exds_jvu_.mil.mn
    [4] => [email protected]
    [5] => 0gi_7ez4ksk1935@bkhzppsqvdr_ix.org.mp
    [6] => [email protected]
    [7] => [email protected]
    [8] => [email protected]
    [9] => [email protected]
    [10] => [email protected]
    [11] => [email protected]
    [12] => wdlyqbfc5d5@qfpp9d7mcs9kq6z_.com.bj
    [13] => tsxnup3rcxyc3kjp@j3x5if_3hvk2_ufa.gov.pw
    [14] => tyb_g_ts2@_ait7zx8r_9t1chc.com.ar
    [15] => [email protected]
    [16] => [email protected]
    [17] => [email protected]
    [18] => [email protected]
    [19] => __izn0ytw@5i2d_ai6.gov.in
    [20] => e3_qmtux_31aff@ihs_qs4.mil.st
    [21] => [email protected]
    [22] => [email protected]
    [23] => [email protected]
    [24] => [email protected]
    [25] => [email protected]
    [26] => [email protected]
    [27] => [email protected]
    [28] => 31f5n3n6b@qnkw97q_ufi7idbo.org.mw
    [29] => [email protected]
    [30] => [email protected]
    [31] => o769vo@2jbwk1_5.gov.hu
    [32] => [email protected]
    [33] => 252x63q7b7aghsb@7i8_ddm2a.mil.cl
    [34] => [email protected]
    [35] => [email protected]
    [36] => xw0lxdbemfpo@e5ufg_7n3of3_.com.im
    [37] => mn9fd_za_jn39x@z2_q_kl0.gov.nl
    [38] => 1wf5lb_2o@oavixwy_rer.mil.az
    [39] => [email protected]
    [40] => [email protected]
    [41] => [email protected]
    [42] => [email protected]
    [43] => aly8otsr@n_m2t_7.gov.pf
    [44] => 57ewo@8sp31z64v_.com.er
    [45] => [email protected]
    [46] => _msdzis@_2ckc.com.ml
    [47] => _t3f68uo46vzj@qq5g_lamevd.org.is
    [48] => [email protected]
    [49] => wb7pplacg4a0ow@4n8yx9eqrw_ruk3d.gov.lb
)



1fziknt8u8@k7_vgif8.gov.sk
[email protected]
[email protected]
[email protected]
b62d5l1fhr_1@jdsryp_u3.org.ee
782e@_9nnjk.gov.bz
[email protected]
[email protected]
bl_5@8vw88md0t_1964.net.np
[email protected]
[email protected]
7bdxtgzh87vv8hl3@e9b_bd8a_2y06.net.pr
[email protected]
dgmgd04rg@b97_8w.net.uz
3fo9tyvu0ok@ee33d_8548k8c6.org.ie
[email protected]
[email protected]
xiwrlggl@8x8j_q9ohmce7uj.mil.it
5vmft7j@pd8lga_.gov.ch
[email protected]
t27nvs96xr@qbh7g2ax_.gov.sa
[email protected]
ta8h5tylvt@xjw_ldc.net.jo
c8h_1@1fqly_.org.vn
[email protected]
aqs4v_d_gi@4t2ihs_qs4v.gov.ng
yjnp_2iav__kypaj@_kwa3hn.net.nu
[email protected]
b_dyl21j@dbcw_tq05.gov.aq
e9385tvmm2ps6d5g@egq_t.gov.nz
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
xnitz@dl_b9sp3kd.net.sk
[email protected]
vzb_0@o3xru_kdq1e7ndp.net.mg
[email protected]
uinnj_q3_1y2ax@lr2q6fb5_44q_.mil.uy
[email protected]
tc6hb6bucac0pd@8d_7jabvi1_.net.mo
[email protected]
[email protected]
[email protected]
[email protected]

Time Taken: 0.00651502609253s

*/

?>