Skip to content

Instantly share code, notes, and snippets.

@weeking
weeking / index.php
Created November 2, 2014 11:02
Daily #186 easy
<?php
$file = '186.txt';
$file = fopen($file, 'r');
$fileContent = array();
$sortedArray = array();
while(!feof($file))
{
<?php
function strpos_array($haystack, $needles)
{
$pos = '';
if(is_array($needles))
{
foreach($needles as $needle)
{
if(is_array($needle))
{