Basically we rummage in CI’s source code for any funny, interesting or weird snippets of code and post them here to show that we developers and programmers do throw some humor into our work 😊
For example, I was just looking at the Loader’s source code when I found this in CI_Loader::model():
<?php
// ...
if (is_array($model))
{
foreach($model as $babe)
{
$this->model($babe);
}
return;
}
// ...
?>