Log 2553
14/01/2024 2024-01-14 23:43function getLastMeetingSummaryLink($linksArray) {
$lastMeetingSummaryLink = ”;
foreach ($linksArray as $link) {
if (strpos($link, #קישור לסיכום מפגש#) !== false) {
$lastMeetingSummaryLink = $link;
}
}
return $lastMeetingSummaryLink;
}
$links = [
‘https://example.com/meeting1’,
‘https://example.com/meeting2’,
#קישור לסיכום מפגש#,
‘https://example.com/meeting3’
];
getLastMeetingSummaryLink($links);