
php
静态html页面如何整合
J3X • admin 回复了问题 • 1 人关注 • 1 个回复 • 1490 次浏览 • 2018-08-22 21:29
求助!joomla!3.8.3+php7.2 进后台login时报错
回复J3X • hill4848 回复了问题 • 1 人关注 • 1 个回复 • 2840 次浏览 • 2018-01-12 09:53
Your host needs to use PHP 5.3.1 FOR Joomla-3.2.1
J3X • QQ被盗了 回复了问题 • 3 人关注 • 2 个回复 • 814 次浏览 • 2017-07-18 01:21
2.5商业布景首页php错误?
J2X • 不是本人 回复了问题 • 4 人关注 • 3 个回复 • 703 次浏览 • 2017-07-18 01:05
2。5版本后台管理-全局配置点保存后出现:无法让configuration.php可写。无法让con
J2X • 不是本人 回复了问题 • 3 人关注 • 2 个回复 • 1031 次浏览 • 2017-07-18 01:03
选单连结在index.php/k2-comments/menu1
J2X • ~~~~~~~~~ 回复了问题 • 3 人关注 • 2 个回复 • 1012 次浏览 • 2017-07-18 00:51
请问一下新的php档和html档应该怎样做才能在Joomla里生效?
J2X • 孤独者 回复了问题 • 3 人关注 • 2 个回复 • 721 次浏览 • 2017-07-18 00:47
静态html页面如何整合
J3X • admin 回复了问题 • 1 人关注 • 1 个回复 • 1490 次浏览 • 2018-08-22 21:29
求助!joomla!3.8.3+php7.2 进后台login时报错
回复J3X • hill4848 回复了问题 • 1 人关注 • 1 个回复 • 2840 次浏览 • 2018-01-12 09:53
Your host needs to use PHP 5.3.1 FOR Joomla-3.2.1
回复J3X • QQ被盗了 回复了问题 • 3 人关注 • 2 个回复 • 814 次浏览 • 2017-07-18 01:21
2。5版本后台管理-全局配置点保存后出现:无法让configuration.php可写。无法让con
回复J2X • 不是本人 回复了问题 • 3 人关注 • 2 个回复 • 1031 次浏览 • 2017-07-18 01:03
选单连结在index.php/k2-comments/menu1
回复J2X • ~~~~~~~~~ 回复了问题 • 3 人关注 • 2 个回复 • 1012 次浏览 • 2017-07-18 00:51
PHP (originally stood for Personal Home Page, now stands for PHP: Hypertext Preprocessor) is a server-side scripting language designed for web development but also used as a general-purpose programming language.
PHP code can be simply mixed with HTML code, or it can be used in combination with various templating engines and web frameworks. PHP code is usually processed by a PHP interpreter, which is usually implemented as a web server's native module or a Common Gateway Interface (CGI) executable. After the PHP code is interpreted and executed, the web server sends resulting output to its client, usually in form of a part of the generated web page – for example, PHP code can generate a web page's HTML code, an image, or some other data. PHP has also evolved to include a command-line interface (CLI) capability and can be used in standalone graphical applications.
PHP is free software released under the PHP License. PHP has been widely ported and can be deployed on most web servers on almost every operating system and platform, free of charge.
PHP Versions
Current Stable Versions: 5.5.15 // Release Date: 24 Jul 2014
Old Stable Version: 5.4.31 // Release Date: 24 Jul 2014
Development Version: 5.6.0RC2 // Release Date: 3 Jul 2014
The current versions of PHP can be downloaded from php.net
PHP and Joomla
Joomla is based on PHP and MySQL, and the minimum PHP version required varies depending on the Joomla version:
Joomla 3.x: Minimum 5.3.10 +, Recommended: 5.4 +
Joomla 2.5 *(including Joomla 1.6 and 1.7): Minimum 5.2.4 +, Recommended: 5.4 +
Joomla 1.5 *(Support ended): Minimum 4.3.10 +, Recommended: 5.2
Code Example
This script prints Hello World! on your screen.
PHP Test
Use your browser to access the file with your web server's URL, ending with the /hello.php file reference.
Online documentation
The PHP manual is the official documentation for the language syntax, featuring function search and URL shortcuts (for example http://php.net/explode). The API is well documented for native and additional extensions. Most additional extensions can be found in PECL. The PEAR repository contains a plethora of community supplied classes.
PHP Tutorials
PHP Basics
PHP security related information
PHP Security Cheat Sheet [by OWASP]
Free online tutorial
PHP-Codecademy
Free PHP Programming Books
PHP Essentials
Practical PHP Programming (wiki containing O'Reilly's PHP In a Nutshell)
Symfony2
Zend Framework: Survive the Deep End
PHP: The Right Way (is a community-driven quick reference for PHP best practices and accepted coding standards)