<?php


class strings{
    public static function contains($string, $search){
        return strpos($string, $search) !== false;
    }
}