1. php英文文献

我感觉 php英文手册 挺好的

2. 求关于php技术的英文文献

汉字的可以不 250不免费

3. php相关的英文参考文献有哪些高分求解!!

guide_to_php_design_pattern---php设计模式
Symfony权威指南 FabienPo
PHP程序设计O'REILLY---英文版
PHP圣经
PHP 5 Power Programming---PHP5 强编程
Core.Java------Java2核心技术
Java think in
Refactoring---重构 改善既有代码的设计
后面写了几个Java的,不知道你能不能理解~~~反正学高级PHP这些都会看。

4. 谁有php的文献综述啊急!

我刚好有中文的两篇,你把你的邮箱给我,我发给你。中国国内没有原创的合作社经济理论,我这两篇都是西方合作社理论文献综述,不知合不合你要求

5. php 最新技术英文文献,最好带中文翻译

英文文献有,但翻译没有,翻译得靠你自己了,如果需要可以回复即可,希望能满足你的需要,能帮到你,多多给点悬赏分吧,急用的话请多选赏点分吧,这样更多的知友才会及时帮到你,我找到也是很花时间的!

6. PHP毕业论文、参考文献、懒得自己找!

1.《来Web2.0网站开发A》,崔宏业,黑龙江源大学建桥学院出版社,2010-052.《Web2.0网站开发B》,崔宏业,黑龙江大学建桥学院出版社,2010-053.《Web2.0网站开发C》,崔宏业,黑龙江大学建桥学院出版社,2010-054.《Web2.0网站开发D》,崔宏业,黑龙江大学建桥学院出版社,2010-055.《Web2.0网站开发E》,崔宏业,黑龙江大学建桥学院出版社,2010-056.《Web2.0网站开发F》,崔宏业,黑龙江大学建桥学院出版社,2010-057.《Web2.0网站开发G》,崔宏业,黑龙江大学建桥学院出版社,2010-058.《Web2.0网站开发H》,崔宏业,黑龙江大学建桥学院出版社,2010-059.《Web2.0网站开发I》,崔宏业,黑龙江大学建桥学院出版社,2010-0510.《Web2.0网站开发J》,崔宏业,黑龙江大学建桥学院出版社,2010-05

7. 求一篇关于php技术的英文文献

PHP (recursive acronym for "PHP: Hypertext Preprocessor") is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into html.

Simple answer, but what does that mean? An example:

Example 1.1. An introctory example

<html>
<head>
<title>Example</title>
</head>
<body>

<?php
echo "Hi, I'm a PHP script!";
?>

</body>
</html>

Notice how this is different from a script written in other languages like Perl or C -- instead of writing a program with lots of commands to output HTML, you write an HTML script with some embedded code to do something (in this case, output some text). The PHP code is enclosed in special start and end tags that allow you to jump into and out of "PHP mode".

What distinguishes PHP from something like client-side JavaScript is that the code is executed on the server. If you were to have a script similar to the above on your server, the client would receive the results of running that script, with no way of determining what the underlying code may be. You can even configure your web server to process all your HTML files with PHP, and then there's really no way that users can tell what you have up your sleeve.

The best things in using PHP are that it is extremely simple for a newcomer, but offers many advanced features for a professional programmer. Don't be afraid reading the long list of PHP's features. You can jump in, in a short time, and start writing simple scripts in a few hours.

PHP is a reflective programming language originally designed for procing dynamic web pages. PHP is used mainly in server-side scripting, but can be used from a command line interface or in standalone graphical applications. Textual User Interfaces can also be created using ncurses.

The main implementation is proced by The PHP Group and released under the PHP License. It is considered to be free software by the Free Software Foundation. This implementation serves to define a de facto standard for PHP, as there is no formal specification.
History
PHP was written as a set of CGI binaries in the C programming language by the Danish/Greenlandic programmer Rasmus Lerdorf in 1994, to replace a small set of Perl scripts he had been using to maintain his personal homepage. Lerdorf initially created PHP to display his résumé and to collect certain data, such as how much traffic his page was receiving. Personal Home Page Tools was publicly released on 8 June 1995 after Lerdorf combined it with his own Form Interpreter to create PHP/FI (this release is considered PHP version 2).

Zeev Suraski and Andi Gutmans, two Israeli developers at the Technion IIT, rewrote the parser in 1997 and formed the base of PHP 3, changing the language's name to the recursive initialism PHP: Hypertext Preprocessor. The development team officially released PHP/FI 2 in November 1997 after months of beta testing. Public testing of PHP 3 began and the official launch came in June 1998. Suraski and Gutmans then started a new rewrite of PHP's core, procing the Zend Engine in 1999.They also founded Zend Technologies in Ramat Gan, Israel, which actively manages the development of PHP.

In May 2000, PHP 4, powered by the Zend Engine 1.0, was released. The most recent update released by The PHP Group, is for the older PHP version 4 code branch which, as of May 2007, is up to version 4.4.7. PHP 4 is currently still supported by security updates for those applications that require it.

On July 13, 2004, PHP 5 was released powered by the new Zend Engine II. PHP 5 included new features such as:
Support for object-oriented programming
The PHP Data Objects extension, which defines a lightweight and consistent interface for accessing databases
Performance enhancements
Better support for MySQL
Embedded support for SQLite
Integrated SOAP support
Data iterators
Error handling via exceptions
The latest stable version, PHP 5.2.3, was released on June 1, 2007.

Usage
PHP generally runs on a web server, taking PHP code as its input and creating Web pages as output, however it can also be used for command-line scripting and client-side GUI applications. PHP can be deployed on most web servers and on almost every operating system and platform free of charge. The PHP Group also provides the complete source code for users to build, customize and extend for their own use.

Server-side scripting
Originally designed to create dynamic web pages, PHP's principal focus is server-side scripting. While running the PHP parser with a web server and web browser, the PHP model can be compared to other server-side scripting languages such as Microsoft's ASP.NET system, Sun Microsystems' JavaServer Pages, mod_perl and the Ruby on Rails framework, as they all provide dynamic content to the client from a web server. To more directly compete with the "framework" approach taken by these systems, Zend is working on the Zend Framework - an emerging (as of June 2006) set of PHP building blocks and best practices; other PHP frameworks along the same lines include CakePHP, PRADO and Symfony.

The LAMP architecture has become popular in the Web instry as a way of deploying inexpensive, reliable, scalable, secure web applications. PHP is commonly used as the P in this bundle alongside Linux, Apache and MySQL, although the P can also refer to Python or Perl. PHP can be used with a large number of relational database management systems, runs on all of the most popular web servers and is available for many different operating systems. This flexibility means that PHP has a wide installation base across the Internet; over 19 million Internet domains are currently hosted on servers with PHP installed.
Examples of popular server-side PHP applications include phpBB, WordPress, and MediaWiki.

8. 谁能提供关于PHP的几个参考文献

进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择你需专要的模块属,比如curl模块:cd curl
执行phpize生成编译文件,phpize在PHP安装目录的bin目录下
/usr/local/php5/bin/phpize
运行时,可能会报错:Cannot find autoconf. Please check your autoconf installation and
the $PHP_AUTOCONF
environment variable is set correctly and then rerun this
script.,需要安装autoconf:
yum install autoconf(RedHat或者CentOS)、apt-get install
autoconf(Ubuntu Linux)
/usr/local/php5/bin/php -v
执行这个命令时,php会去检查配置文件是否正确,如果有配置错误,
这里会报错,可以根据错误信息去排查!

9. 求一篇关于php的英文文献,做毕设用的,要有出处。帮帮忙,谢谢!

文献下载地址见附件