PHP經典筆試題
1 請說明 PHP 中傳值與傳引用的區別。什么時候傳值什么時候傳引用?
答: 傳值只是把某一個變量的.值傳給了另一個變量,而引用則說明兩者指向了同一個地方。
2 在PHP中error_reporting這個函數有什么作用?
答: 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 請用正則表達式(Regular Expression)寫一個函數驗證電子郵件的格式是否正確。
答:
php
if(isset($_POST['action']) &&
$_POST['action']==’submitted’)
{
$email=$_POST['email'];
if(!preg_match(“/^(?:w+.?)*w+@(?:w+.?)*w+$/”,$email))
{
echo
“電子郵件檢測失敗”;
}
else
{
echo
“電子郵件檢測成功”;
}
}
else
{
?>
【PHP經典筆試題】相關文章:
經典PHP筆試題12-15
PHP筆試題01-02
幾道PHP筆試題01-03
php練習筆試題07-24
PHP面試題集01-03
PHP筆試題含答案01-01
PHP筆試題及答案01-01
Yahoo-PHP筆試題01-01
360筆試題目07-11