资源描述:
《PHP基础语言-外文翻译》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、附录A外文翻译-原文部分PHPLanguageBasicsActiveServerPages(PHP)isaproven,well-establishedtechnologyforbuildingdynamicWebapplications,whichprovidesthepowerandflexibilityyouneedtocreateanythingfromapersonal,WebbasedphotogallerytoacompletecatalogueandshoppingcartsystemforyournexteCommerceproje
2、ct。OneuniquefeatureofPHPisthatitletsyouchooseyourfavouritescriptinglanguage,beitJavaScriptorPHP;however,PHPisbyfarthemostpopularchoice.Inthisarticle,I'llbringyouuptospeedonthebasicsyntaxofthePHPlanguage,includingvariables,operators,andcontrolstructures.Thisarticleisthesecondinas
3、eriesteachingPHP.Specifically,thegoalofthisseriesistoteachyouallyouneedtoknowtocreatedynamicWebsitesusingPHP.Thisarticlepicksuprightwherethepreviousarticleintheseries,GettingStartedwithPHP,leftoff.VariablesHereisthelistingforthefirstPHPscriptIhelpedyoucreateinthepreviousarticle:
4、12
3
MyFirstPHPPage456ThisisatestofPHP."9?>1011AsIadmittedinthatarticle,thisisaprettyuninterestingexampleofanPHPscript.Whenitcomesrightdowntoit,thisscriptdoesn'tdoanythingaplain,o
5、ldHTMLpagecouldn'tdo.Ohsure,Igaveaslightlymoreinterestingexamplethatdisplayedthecurrentservertime,buttobereallyusefulascriptneedstoperformsomeformofcalculation,ormanipulatedynamicinformationtopresentitinsomeinterestingway.ThelanguageusedforwritingmostPHPprograms,andwhichI'llbeus
6、ingthroughoutthisseries,iscalledPHP.Likemostprogramminglanguages,PHPletsyoustoredatainvariables.Avariablemaybethoughtofsimplyasanamedlocationinmemorywheredatamaybestored.PHPiswhatisknownasalooselytypedlanguage,whichmeansthataparticularvariablemaystoreanykindofinformation,beitanu
7、mber,apieceoftext,adate,orsomemorecomplicatedchunkofdata(asopposedtostrictlytypedlanguageswhereyoucanonlystoreonekindofinformationineachvariable).Beforeyoucanuseavariable,though,youmustdeclareit;thatis,youmustletPHPknowthatyouwanttocreateavariablewithaparticularname.Let'slookata
8、basicexampletohelpsolidifytheseconceptsinyourmi