gpt4 book ai didi

php - "first 2 words"数组中值的多重匹配然后array_intersect?

转载 作者:可可西里 更新时间:2023-10-31 23:41:55 26 4
gpt4 key购买 nike

首先让我道歉,我是一名网络工程师,而不是编码员......所以请耐心等待。

这就是我面临的问题,我无法为我的生活找到一种优雅的方式来做到这一点。

我正在使用 nagios(相信你们中的许多人都熟悉它)并且正在从服务检查中获取性能数据。这一个特别返回如下值:模块 2 入口温度模块 2 导出温度模块 2 asic-4 温度模块 3 入口温度模块 3 导出温度模块 4 入口温度模块 4 导出温度... 等等这些值都显示在一个数组中。我想做的是:匹配字符串中的前 2 个单词/值,以创建用于生成 RRD 图的数组键值“组”... RRD 部分我不需要任何帮助,但匹配和输出我做。

我还应该注意,这里也可能有不同的数组值,具体取决于数据来自的设备(即它可能显示为“Switch #1 Sensor #1 Temperature”),而我不是目前担心这一点,我将在未来使用这个脚本来评估这些值,以创建它们各自的图表。

所以,言归正传,我的想法是从原始数组创建两个数组:最初使用 preg_match 来寻找/.outlet.|.asic./因为这些是“热”温度,然后通过将新数组分解为第二个值(int)或前两个值(模块#)供以后比较

其次使用 preg_match 寻找/.inlet./因为这些是“冷”温度,然后通过像前者一样分解新数组来进一步优化。

现在应该有两个带有 key=># 或 key=>module # 的数组然后使用 array_intersect 在两个数组中查找匹配项并输出键,以便我可以使用它们生成图形。

这有意义吗?换句话说,我只想选择匹配的模块 # 条目以在我的图形中使用。即模块 2 入口、模块 2 导出、模块 2 asic...然后重复 - 模块 3 入口、模块 3 导出等...

这是我尝试过的方法,但根本没有按照我想要的方式工作:

$test = array("module 1 inlet temperature", "module 2 inlet temperature", "module 2 asic-4 temperature", "module 2 outlet temperature", "module 1 outlet temperature");
$results = array();
foreach($test as $key => $value) {
preg_match("/.*inlet.*|.*asic.*/", $test[$key]);
preg_match("/module [0-9]?[0-9]/", $test[$key]);
$results[] = $value;
}

if(preg_match("/.*outlet.*/", $test[$key]));
foreach($test as $key1 => $value1) {
preg_match("/module [0-9]?[0-9]/", $test[$key1]);
$results1[] = $value1;
}#
}
$results3 = array_intersect($results, $results1)

如有任何帮助,我们将不胜感激。我敢肯定我在这里的解释很困惑所以希望有人可怜我并帮助一个人...

提前致谢。

最佳答案

有点难以理解您的问题,但我想您正在寻找这样的结果?

$temps['module 1']['inlet'] = 20;
$temps['module 1']['outlet'] = 30;

$temps['module 2']['inlet'] = 25;
$temps['module 2']['outlet'] = 35;
$temps['module 2']['asic-4'] = 50;

然后您将使用这些数组生成图表?

只要你在一个数组中有标签,在另一个数组中有临时值,并且每个数组中标签和临时值的顺序是相同的......那么你将如何做到这一点:

// Split Names into Groups
$temps = array(20,25,50,35,30);
$labels = array("module 1 inlet temperature", "module 2 inlet temperature", "module 2 asic-4 temperature", "module 2 outlet temperature", "module 1 outlet temperature");

// Combine Lables to Values (Labels and Values must be in the same positions)
$data = array_combine($labels, $temps);

$temps = array();
foreach ($data as $label => $temp) {
$words = preg_split('/\s/i', $label);

// Combine first two pieces of label for component name
$component = $words[0] . ' ' . $words[1];

// Sensor name is on it's own
$sensor = $words[2];

// Save Results
$temps[$component][$sensor] = $temp;
}

// Print out results for debug purposes
echo '<pre>';
var_dump($temps);
echo '</pre>';
exit();

一旦你有了 $temp 数组,你就可以使用 foreach 循环遍历每个模块和传感器并打印出图表的值,或者只显示某些模块,或某些传感器等。

即使它不是您真正想要的,希望它能给您一些想法,您可以对其进行调整以适应。

关于php - "first 2 words"数组中值的多重匹配然后array_intersect?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14208326/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com