Advertisement
basart1

Untitled

Mar 13th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function filter($arrayString,$searchString){
  2. foreach ($arrayString as $element){
  3. substr ($element,$searchString);
  4. $x = substr($element,$searchString);
  5. if ($x){
  6. return $element[];
  7. }
  8.  
  9. function substr ($string, $substring) {
  10. // проверяет вхождение подстроки в строку и возвращает bool
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement