程式百科 Wiki
Advertisement
PHP
File:PHP-logo.png
编程范型: 物件导向函数式
释出时间: {{{year}}}
设计者: Rasmus Lerdorf
实作者: The PHP Group
最近释出日期: 5.5.5 / 2013年10月16日
型态系统: 动态、弱型别
主要实作产品: {{{implementations}}}
衍生副语言: {{{dialects}}}
启发语言: PerlC
影响语言: {{{influenced}}}
操作系统: 跨平台
授权方式: PHP License
网站: PHP 官方网站

PHPPHP: Hypertext Preprocessor), 参照:‘维基百科~PHP’。

开发工具[ | ]

IDE
其他开发工具
PHP快取

参照:‘维基百科~List_of_PHP_accelerators

编译器
PHP程式码加密工具
其它
  • PhpDocumentor……PHP文件产生器,自动自PHP档中抽出相关的注解产生相关的文件

相关设定[ | ]

关于PHP.INI[ | ]

  • 除错讯息
error_reporting  =  E_ALL
display_errors = On
  • 魔术引号
magic_quotes_gpc = Off
magic_quotes_runtime = Off
magic_quotes_sybase = Off
  • register_globals
register_globals = Off
  • 预设时区(台湾为GMT+8)
date.timezone = Asia/Taipei

关于.htaccess[ | ]

主条目:.htaccess

关于PHP的Debug[ | ]

教学文件[ | ]

PHP与WebService[ | ]

PHP与Flash[ | ]

UTF8[ | ]

相关OpenSource[ | ]

Class或函数[ | ]

  • 参照:Class_for_PHPFunction_for_PHP

Framework[ | ]

Blog[ | ]

主条目:Blog#PHP

Wiki[ | ]

主条目:Wiki#PHP

讨论区[ | ]

主条目:Forum#PHP

内容管理系统[ | ]

主条目:CMS#PHP

MySQL数据库管理[ | ]

电子商务(网络商店)[ | ]

主条目:Shopping_Cart#PHP

Bug追踪系统[ | ]

专案管理[ | ]

主条目:Project Management#PHP

图库系统[ | ]

主条目:Gallery#PHP

FAQ[ | ]

客服系统[ | ]

Billing[ | ]

Mailing Lists[ | ]

网站流量与统计表[ | ]

聊天室[ | ]

主条目:ChatRoom#PHP

档案上传[ | ]

  • AjaxFileUpload (AJAX中的假货, 以偷开隐藏的iframe, 再从里头放表单, 再用post将表单发送)

File explorer[ | ]

传讯[ | ]

JavaScript压缩工具[ | ]

讨论区[ | ]

FAQ[ | ]

PHP输出网页乱码[ | ]

验证email是否有效[ | ]

格式化日期[ | ]

以2010年3月4日為例
Y年m月d日 → 2010年03月04日
Y年n月j日 → 2010年3月4日

PHP安全模式[ | ]

  • Safe Mode(有些PHP下的函数可能导致罢工)

PHP 5.3.0+ 未设定系统预设时区[ | ]

可能导致网页上出现下列警告讯息
  • Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings.
  • Warning: date() [function.date]: It is not safe to rely on the system's timezone settings.
date_default_timezone_set('Asia/Taipei');

PHP档案减肥[ | ]

  • 去除PHP程式码之间的注解跟缩排
php -w test.php > test.striped.php 

如何建立更安全的登入网页[ | ]

停用不安全的函数[ | ]

  • 在php.ini
disable_functions = show_source, system, shell_exec, passthru, exec, popen, proc_open
Advertisement