PHP/String/String Contains — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 07:07, 26 мая 2010
String contains string
<?
$text = "PHP rules!";
if (ereg("PHP", $text)) {
echo( "$text contains the string "PHP"." );
} else {
echo( "$text does not contain the string "PHP"." );
}
?>