PHP面試題附答案_第1頁
PHP面試題附答案_第2頁
PHP面試題附答案_第3頁
PHP面試題附答案_第4頁
免費預覽已結束,剩余3頁可下載查看

下載本文檔

版權說明:本文檔由用戶提供并上傳,收益歸屬內容提供方,若內容存在侵權,請進行舉報或認領

文檔簡介

1、PHP面試題附答案1.Whichofthefollowingwillnotaddjohntotheusersarray?1.$users=john2.array_add($users,john);3.array_push($users,john);4.$users|=johnAnswer:2,42.Whatsthedifferencebetweensort(),asort()andksort(),rsort()?Underwhatcircumstanceswouldyouuseeachofthese?sort():本函數對數組的值進行排序。當本函數結束時數組單元將被從最低到最高從新布置,arr

2、ay中的單元賦予新的鍵名。這將刪除原有的鍵名而不僅是從新排序。asort():這個函數將數組的值從新排序,由小至大排列。數組的索引亦跟著值的順序而變動。當您在程序中需要從新整理數組值的順序時,就能夠使用這個函數。ksort():對數組根據鍵名排序,保留鍵名到數據的關聯。本函數重要用于關聯數組。rsort():本函數對數組進行逆向排序(最高到最低)。與sort()履行相反的操作。3.Whatwouldthefollowingcodeprinttothebrowser?Why?$num=10;functionmultiply()$num=$num*10;multiply();echo$num;10

3、4.Whatisthedifferencebetweenareferenceandaregularvariable?Howdoyoupassbyreferencewhywouldyouwantto?passbyreferencelikethisfunctions($vars);itlikesmorefast;5.Whatfunctionscanyouusetoaddlibrarycodetothecurrentlyrunningscript?inlcude()orrequire();6.Whatisthedifferencebetweenfoo()foo()?iffoo()throwaerro

4、r,willbealert,butfoo()no;7.HowdoyoudebugaPHPapplication?xdebugorusedie()doit;8.Whatdoes=do?Whatsanexleofsomethingthatwillgivetruefor=,butnot=?=用于精到準確比較ex:(=null)=truebut(=null)=false;9.Howwouldyoudeclareaclassnamedmyclasswithnomethodsorproperties?classmyclass10.Howwouldyoucreateanobject,whichisanins

5、tanceofmyclass?$myoject=newmyclass();11.Howdoyouaccessandsetpropertiesofaclassfromwithintheclass?getVar()orsetVar();12.Whatisthedifferencebetweenincludeinclude_once?includerequire?require:PHP程式在履行前,就會先讀入require所指定引入的檔案,使它變成PHP程式網頁的一部份。常用的函式,亦能夠這個方法將它引入網頁中。毛病產生致命毛病。include:這個函式一般是放在流程控制的處理區段中。PHP程式網頁

6、在讀到include的檔案時,才將它讀進來。這種方式,能夠把程式履行時的流程簡單化。毛病產生警報。include_once:此行為和include()語句類似,唯一區別是假如該文件中的代碼已經被包括了,則不會再次包括。好像此語句名字暗示的那樣,只會包括一次。13.Whatfunctionwouldyouusetoredirectthebrowsertoanewpage?1.redir()2.header()3.location()4.redirect()214.Whatfunctioncanyouusetoopenafileforreadingandwriting?1.fget();2.fil

7、e_open();3.fopen();4.open_file();315.Whatsthedifferencebetweenmysql_fetch_row()andmysql_fetch_array()?mysql_fetch_row():返回根據所獲得的行生成的數組,假如沒有更多行則返回FALSE。mysql_fetch_array():是mysq_fetch_row()的擴展版本。除了將數據以數字索引方式儲存在數組中之外,還能夠將數據作為關聯索引儲存,用字段名作為鍵名。16.Whatdoesthefollowingcodedo?Explainwhatsgoingonthere.$date=

8、08/26/2003printereg_replace(0-9+)/(0-9+)/(0-9+),2/1/3,$date);本函數以正則的規則來解析比對字符串,欲取而代之的字符串為2/1/3。返回值為字符串類型,為取代后的字符串結果。17.Givenalineoftext$string,howwouldyouwritearegularexpressiontostripalltheHTMLtagsfromit?strip_tags18.WhatsthedifferencebetweenthewayPHPandPerldistinguishbetweenarraysandhashes?19.HowcanyougetroundthestatelessnatureofHTTPusingPHP?20.Whatdoesthe

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯系上傳者。文件的所有權益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網頁內容里面會有圖紙預覽,若沒有圖紙預覽就沒有圖紙。
  • 4. 未經權益所有人同意不得將文件中的內容挪作商業或盈利用途。
  • 5. 人人文庫網僅提供信息存儲空間,僅對用戶上傳內容的表現方式做保護處理,對用戶上傳分享的文檔內容本身不做任何修改或編輯,并不能對任何下載內容負責。
  • 6. 下載文件中如有侵權或不適當內容,請與我們聯系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論