Home >Backend Development >PHP Tutorial >一个php文件,注册很多函数,代码看起来乱乱的。怎么有条理地归划这些函数

一个php文件,注册很多函数,代码看起来乱乱的。怎么有条理地归划这些函数

WBOY
WBOYOriginal
2016-06-06 20:18:581224browse

怎么有条理地安排?

回复内容:

怎么有条理地安排?

为啥都要要写到一个文件里,不能抽象么~

1 考虑OO
2 函数同类分类,比如string操作类 strings.fuc.php date.fuc.php

__autoload

统一放到functions.php里,找起来应该更方便吧,文本编辑器比如Geany都能把一个文件里的函数全部在边栏列出来和进行智能提示.很多程序都这样,典型的如PunBB,关键是合理规划前缀,避免命名冲突.比如3个人(分别为A,B,C)共同开发一个PHP项目.统一由负责人A在common.php中包含functions.php,functions_B.php,functions_C.php.其他开发者开发时只编辑自己的函数文件.视图里的样式表也是如此,由负责人统一在header.php里引入style.css,style_B.css,style_C.css.每个页面的容器快,用一个特有的class来区分,比如文章页.cat-post .title {},登录页.cat-login .title {}.有了这些"前缀",就可以避免不同页面.title样式的互相影响.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn