PHP/String/String Contains
Версия от 10:37, 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"." );
}
?>