Skip to content

Instantly share code, notes, and snippets.

View janstieler's full-sized avatar

Jan janstieler

View GitHub Profile
@pxlrbt
pxlrbt / cookie-consent.css
Created May 25, 2018 15:58
Cookie Consent für Philipp
@zuhairkareem
zuhairkareem / search_partial_string_array.php
Last active May 19, 2023 15:14
Search partial string in an array in PHP
<?php
/**
* First Method.
*/
function array_search_partial($arr, $keyword) {
foreach($arr as $index => $string) {
if (strpos($string, $keyword) !== FALSE)
return $index;
}
}