strcspn

(PHP 3 >= 3.0.3, PHP 4, PHP 5)

strcspn --  Возвращает длину участка в начале строки, не соответствующего маске

Описание

int strcspn ( string str1, string str2 [, int start [, int length]] )

Возвращает длину участка в начале строки str1, который не содержит ни одного символа из строки str2.

Начиная с версии PHP 4.3.0, поддерживаются два необязательных аргумента, задающие начальную позицию и длину участка строки, в котором производится поиск.

Замечание: Эта функция безопасна для обработки данных в двоичной форме.

См. также описание функции strspn().



strcspn
AT-HE (at_he AT hotmai1 DOT com)
27-Dec-2005 02:07
this function can be used like strspn(), except while that can be used to compare a string with an allowed pattern, this one can be use to compare a string with a FORBIDDEN pattern

so, to know if any forbidden character has a position inside our string, we can use (not tested with backslashes)...

<?php
// LARGE VERSION
$forbidden="\"\\?*:/@|<>";
if (
strlen($filename) != strcspn($filename,$forbidden)) {
   echo
"you cant create a file with that name!";
}

// SHORT VERSION
if (strlen($filename) - strcspn($filename,"\"\\?*:/@|<>")) {
   echo
"i told you, you cant create that file";
}
?>
maskedcoder at hotmail dot com
10-Oct-2005 04:13
useful for finding beginning of quotes and/or tags in a variable containing html. 
   $pos = strcspn($data, '<"\'');
will find the first occurance of either the beginning of a tag, or a double- or single-quoted string.

<strcollstrip_tags>
 Last updated: Tue, 15 Nov 2005