2013年11月16日 星期六

preg_match 比對 E-mail 格式


$email = "[email protected]"

preg_match("/^[[:alnum:]][a-z0-9_.-]*@[a-z0-9.-]+\.[a-z]{2,4}$/i", $email)

另種比對 email 的方式

filter_var($email, FILTER_VALIDATE_EMAIL)

2013年11月14日 星期四

[部落格介紹] Ant's ATField


分類
心情分享, 3C資訊

網址

php 取得 Cookie 並讀入陣列


<?php

if(strstr($http_header,"Set-Cookie:"))  
            {  
                list($coo,$cookiestring)=explode(" ",$http_header);
                $cookies[] = $cookiestring;
            }

?>