- 相關(guān)推薦
PHP經(jīng)典筆試題
1 請說明 PHP 中傳值與傳引用的區(qū)別,
PHP經(jīng)典筆試題
。什么時候傳值什么時候傳引用?答: 傳值只是把某一個變量的值傳給了另一個變量,而引用則說明兩者指向了同一個地方。
2 在PHP中error_reporting這個函數(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 請用正則表達(dá)式(Regular Expression)寫一個函數(shù)驗(yàn)證電子郵件的格式是否正確。
答:
php
if(isset($_POST['action']) &&
$_POST['action']==’submitted’)
{
$email=$_POST['email'];
if(!preg_match(“/^(?:w+.?)*w+@(?:w+.?)*w+$/”,$email))
{
echo
“電子郵件檢測失敗”;
}
else
{
echo
“電子郵件檢測成功”;
}
}
else
{
?>
【PHP經(jīng)典筆試題】相關(guān)文章:
經(jīng)典PHP筆試題09-16
最新php筆試試題10-27
最新PHP筆試題目及答案05-25
筆美國國家儀器試題目09-23
新浪筆經(jīng)04-27
Php程序員崗位職責(zé)范本08-20
新聞總署筆經(jīng)10-13
IBM公司筆經(jīng)09-15
營銷卷筆經(jīng)10-25