0

好的,我会尽力解释,(我是葡萄牙语,哈哈)。

我有一个数据库,其中有闲置的 MySQL:

数据库:广告
表:笔记本
字段:ID、标签、so、lastlogon、lastlogh

我的 ldap 查询从 ldap 服务器(活动目录)获取数据并将其存储在我的 MySQL 数据库(广告/笔记本)中。我得到标签,标签号是唯一的。我知道这是笔记本中安装的操作系统。我得到 lastlogh ,它是最后一次登录时间戳,它也是独一无二的。ID 字段是自动增量和键,但我可以将标签字段设置为键。

我有一个 config_notebooks.php,我在其中设置了所有变量以连接到 ldap 和 MySQL 服务器。

<?php
/*------------------------------------------------------------------------*/
//setting your variables
/*------------------------------------------------------------------------*/
//ldap host
$host = "ldap://HEICPT1VIA01.HEIWAY.NET";
//ldap user
$user = "domain\user";
//ldap password
$pswd = "pssw";
//ldap base structure
$dn = "OU=NotebookM2,OU=WorkstationsM2,OU=PT1,DC=heiway,DC=net";;
//attributs to search and get
$attrs = array("cn","operatingsystem","lastlogon");
//sql host
$sqlhost="localhost"; 
//sql user
$sqluser="root";
//sql password
$sqlpswd="";
//sql database
$database="ad";
//sql table
$table="notebooks";
?>

现在查询脚本

<?php
/*------------------------------------------------------------------------*/
//Query script
/*------------------------------------------------------------------------*/
include 'config_notebooks.php';
$filter = $_POST['filter']."=".$_POST['keyword']."*";
//connect to db
$con = mysql_connect("$sqlhost","$sqluser",""); 
if (!$con) 
{ 
die('Could not connect: ' . mysql_error()); 
} 

//connect to active directory
$ad = ldap_connect($host)
  or die( "Could not connect!" );
  
  // Set version number
ldap_set_option($ad, LDAP_OPT_PROTOCOL_VERSION, 3)
 or die ("Could not set ldap protocol");
  
  // Binding to ldap server
$bd = ldap_bind($ad, $user, $pswd)
  or die ("Could not bind");

$search = ldap_search($ad, $dn, $filter, $attrs)
      or die ("ldap search failed");

$entries = ldap_get_entries($ad, $search);
$sel = mysql_select_db("ad", $con); 
if (!$sel) 
{ 
die('Could not select DB: ' . mysql_error()); 
} 

for ($i=0; $i<$entries["count"]; $i++) 
{ 

$tag = $entries[$i]["cn"][0]; 
$so = $entries[$i]["operatingsystem"][0]; 
$lastl = $entries[$i]["lastlogon"][0];

     
        mysql_query("
        INSERT INTO 
            $table (tag, so, lastlogh)
        VALUES 
            ('$tag', '$so', '$lastl')
            ON DUPLICATE KEY UPDATE         
        tag='$tag',
        so='$so',
        lastlogon='$lastl'
        ");

} 
mysql_close($con); 
ldap_unbind($ad);
if ($entries["count"] > 0)
header("Location: notebooks_list.php")
?>

在此查询中,上次登录时间戳编码为 130276262860634000

所以我可以将所有内容导出到 excel 并对其进行解码,但我找到了一个可以做到这一点的代码,因此可以节省时间。我在数据库(lastlogon)中创建了一个新字段,我需要从 lastlogh 字段中获取数据,使用新脚本进行解码并将其存储在 lastlogon 字段中。

这是我找到的脚本:

<?php
function adConvert ($ad) {
  $seconds_ad = $ad / (10000000);
   //86400 -- seconds in 1 day
   $unix = ((1970-1601) * 365 - 3 + round((1970-1601)/4) ) * 86400;

   $timestamp = $seconds_ad - $unix; 
   $normalDate = date("F d, Y", $timestamp);

      return $normalDate;
}

//example: echo adConvert($ad);
?>
4

2 回答 2

0

使用 Mysql API

$res = mysql_query("SELECT * FROM $table");
while($row = mysql_fetch_assoc($res)) {
  $logon_ts = adConvert($row['lastlogh']);
  mysql_query("UPDATE $table SET lastlogon = '$logon_ts' WHERE tag='$row[tag]'");
}

我希望这能解决你的问题。

注意: Mysql API 自 PHP 5.5.0 起已弃用。因此,强烈建议使用 Mysqli API 进行更新的开发。

于 2013-11-04T18:12:33.817 回答
0

man .. 使用 distinct 来解决你的问题http://www.w3schools.com/sql/sql_distinct.asp

于 2013-11-04T18:29:39.343 回答