wangtengyu
2018-12-07 f459412e0dac4ed94106da043b4c6f8576bfe496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?php
 
/**
 *  ajax
*/
 
define('IN_ECS', true);
 
require(dirname(__FILE__) . '/includes/init.php');
 
if ($_REQUEST['act'] == 'tipemail')
{
    require(ROOT_PATH . 'includes/cls_json.php');
    $word_com = json_str_iconv($_REQUEST['word']);
    $json_com   = new JSON;
    $result_com = array('error' => 0, 'message' => '', 'content' => '');
    
    if(!$word_com ||  strlen($word_com) > 30)
    {
        $result_com['error']   = 1;
        die($json_com->encode($result_com));
    }
    $word_com = str_replace(array(' ','*', "\'"), array('', '', ''), $word_com);
 
    $email_name_arr = explode("@", $word_com);
    $email_name = $email_name_arr[0];
    
    $_CFG['email_domain'] =str_replace(" ", "",$_CFG['email_domain']);
    $email_domain_arr = explode(",", str_replace(",",",",$_CFG['email_domain']));
 
    $logdb=array();
    foreach($email_domain_arr AS $key=>$edomain)
    {
        $email_domain_arr[$key] = $email_name.'@'.$edomain;
    }
 
    foreach($email_domain_arr AS $email_domain)
    {
        if (stristr($email_domain, $word_com))
        {
            $logdb[] = $email_domain;
        }
    }
    $smarty->assign('logdb', $logdb);    
 
    if(count($logdb)==0)
    {
        $result_com['content'] = '';
    }
    else
    {        
        $result_com['content'] = $smarty->fetch('library/email_tip.lbi');
    }
    
 
    die($json_com->encode($result_com));
}
?>