php captcha sicherheitscode kontaktformular generator

PHP-Startseite
Sitemap
Impressum / Kontakt

Webmaster-Tool:
KontaktFormular Generator

PHP-Scripts:
PHP-CAPTCHA
dbTool
Template-Klasse in PHP
RegEx
Webkatalog Script php-CAPTCHA KontaktFormularGenerator Template php

PHP Artikel:
Formular erstellen
Artikel der Woche

Partner: php2all

Reguläre Ausdrücke in PHP

Dieser RegEx erkennt Wörter der Sprache, die nur aus a´s und b´s oder aber nur aus Leerzeichen bestehen.

<?php
/*
 * Created on 21.02.2006
 * @autor Michael Peuss
 */

$regEx '^([ab]*|[ ]*)$';

$sprache = array();
$sprache[] = '';
$sprache[] = ' ';
$sprache[] = '  ';
$sprache[] = 'a';
$sprache[] = 'aa';
$sprache[] = 'b';
$sprache[] = 'ba';
$sprache[] = 'bab';

foreach (
$sprache as $wort) {
  if (!
ereg($regEx$wort)) {
    die(
'Wort nicht erkannt: '.$wort);    
  }
}

$sprache = array();
$sprache[] = 'c';
$sprache[] = 'c ';
$sprache[] = ' C';
$sprache[] = 'aB';
$sprache[] = 'a a';
$sprache[] = ' b';
$sprache[] = 'b a';
$sprache[] = 'b ab ';

foreach (
$sprache as $wort) {
  if (
ereg($regEx$wort)) {
    die(
'Wort erkannt: '.$wort);    
  }
}
echo 
'RegEx ok!';
?>

Neue Beiräge auf Homepage-Werbung.de

Mit aktuellen Beiträgen Traffic von einer Homepage auf die andere lotsen

Ein paar Links fürs Grundverständnis zum Thema ‘Steuern’

Outsourcing – wohin mit der Arbeit?

RSS Newsfeed auf Homepages einbinden (Tutorial)

Kostenlose Leseprobe ‘Website Boosting’ Magazin

Satelliten Projekte (SEO-Taktik)

OVK Online-Report 2010/01 veröffentlicht (Linktipp)

Ad Management Plugins, Tutorials, Infos… (Linktipp)

Blogposts mit ‘RF Twitter Post’ (Wordpress Plugin) automatisch bekannt machen

7 Social Bookmarking Dienste im Vergleich

© Michael Peuß