regex ile GMT saatini ve bölüştürme doğrulamak?

0 Cevap php
// create a string
$string = '+7';

// try to match the beginning of the string
if(preg_match("{-15 to +12}", $string))
    {
    // if it matches we echo this line
    return {strip all the + sign}
    echo 'its a valid gmt time';
    }
else
    {
    echo 'not valid gmt time';
    }

Soru:

  1. lütfen ilk {} preg_match'in üzerine, biz bunu nasıl yapabiliriz? regex yeni im ve ben sadece nerede başlar bilmiyorum

  2. İkinci on {} biz nedense regex useing tarafından + işaretini şerit olabilir?

  3. gmt aralık doğru olduğunu? -14 +12 (De i http://www.php.net/manual/en/timezones.others.php gördükleriniz şu)

Teşekkürler

0 Cevap