PHP經(jīng)典筆試題
1 請(qǐng)說(shuō)明 PHP 中傳值與傳引用的區(qū)別。什么時(shí)候傳值什么時(shí)候傳引用?
答: 傳值只是把某一個(gè)變量的.值傳給了另一個(gè)變量,而引用則說(shuō)明兩者指向了同一個(gè)地方。
2 在PHP中error_reporting這個(gè)函數(shù)有什么作用?
答: The error_reporting() function sets the error_reporting directive at runtime. PHP has many levels of errors, using this function sets that level for the duration (runtime) of your script.
3 請(qǐng)用正則表達(dá)式(Regular Expression)寫(xiě)一個(gè)函數(shù)驗(yàn)證電子郵件的格式是否正確。
答:
php
if(isset($_POST['action']) &&
$_POST['action']==’submitted’)
{
$email=$_POST['email'];
if(!preg_match(“/^(?:w+.?)*w+@(?:w+.?)*w+$/”,$email))
{
echo
“電子郵件檢測(cè)失敗”;
}
else
{
echo
“電子郵件檢測(cè)成功”;
}
}
else
{
?>
【PHP經(jīng)典筆試題】相關(guān)文章:
經(jīng)典PHP筆試題12-15
PHP筆試題01-02
幾道PHP筆試題01-03
php練習(xí)筆試題07-24
PHP面試題集01-03
PHP筆試題含答案01-01
PHP筆試題及答案01-01
Yahoo-PHP筆試題01-01
360筆試題目07-11