1、 此文档是毕业设计外文翻译成品( 含英文原文+中文翻译) ,无需调整复杂的格 式!下载之后直接可用,方便快捷!本文价格不贵,也就几十块钱!一辈子也就 一次的事! 外文标题:Introducing to PHP 外文作者:David R.Brooks 文献出处: Programming in HTML and PHP :Coding for Scientists and Engineers,2018(如觉得年份太老,可改为近 2 年,毕竟很多毕业生都这样做) 英文 4605 单词,27056 字符(字符就是印刷符),中文 7376 汉字。 (如果字数多 了,可自行删减,大多数学校都是要求选取外文
2、的一部分内容进行翻译的。 ) Introduction to PHP This chapter introduces syntax and some capabilities of the PHP language. 5.1 What Should a Programming Language Do? PHP is a structured programming language, which means that it provides a way to solve computational problems by breaking them into discrete steps th
3、at can be carried out in a top to bottom fashion, one step at a time. All structured languages share certain essential features. 1.Manage input and output. To be useful, any language must provide an input/output (I/O) interface with a user. When a computer program is executed or a script is interpre
4、ted, the user may be asked to provide input either as the program is being executed or within the program itself. The language instructs the users computer to perform tasks based on that input. The language then instructs the computer to display the results. Older languages such as C will accept keyboard input and display text output on a computer monitor. HTML and PHP work together to provide a much richer I/O environment. 2.Permit values to be manipulated in a symbolic way, independent of t