search
HomeBackend DevelopmentPHP TutorialThoughts after reading ThinkPHP's Example_PHP Tutorial

Thoughts after reading ThinkPHP's Example_PHP Tutorial

I downloaded the ThinkPHP code a few days ago and looked at it. My impression was not as good as that of CodeIgniter (CI). Maybe it’s because I downloaded the latest RC version! The Examples inside are not complete, so I opened a few 404 prompts because I am more concerned about the code for database operations. In addition, I ran through the Blog Example and found that the functions are quite complete. But after spending more than ten minutes looking at the code, I was scared. The reasons why I don’t like it very much are as follows:

1. The code is very large. After using the framework, such a small blog still needs to type so much code, and the development time is not short.

2. Write HTML, CSS, and Script in the controller, which makes the controller bloated and the code a bit confusing. Why not write it into View?

protected function ajaxUploadResult($info) {
        // Ajax方式附件上传提示信息设置
        // 默认使用mootools opacity效果
        //alert($info);
        $show = '<script language="JavaScript" src="'%20.%20WEB_PUBLIC_PATH%20.%20'/Js/mootools.js"></script><script language="JavaScript" type="text/javascript">&#39; . "\n";
        $show .= &#39; var parDoc = window.parent.document;&#39;;
        $show .= &#39; var result = parDoc.getElementById("&#39; . $info[&#39;uploadResult&#39;] . &#39;");&#39;;
        if (isset($info[&#39;uploadFormId&#39;])) {
            $show .= &#39; parDoc.getElementById("&#39; . $info[&#39;uploadFormId&#39;] . &#39;").reset();&#39;;
        }
        $show .= &#39; result.style.display = "block";&#39;;
        $show .= " var myFx = new Fx.Style(result, &#39;opacity&#39;,{duration:600}).custom(0.1,1);";
        if ($info[&#39;success&#39;]) {
            // 提示上传成功
            $show .= &#39;result.innerHTML = "<div style=\"color:#3333FF\"> 文件上传成功!";&#39;;
            // 如果定义了成功响应方法,执行客户端方法
            // 参数为上传的附件id,多个以逗号分割
            if (isset($info[&#39;uploadResponse&#39;])) {
                $show .= &#39;window.parent.&#39; . $info[&#39;uploadResponse&#39;] . &#39;("&#39; . $info[&#39;uploadId&#39;] . &#39;","&#39; . $info[&#39;savename&#39;] . &#39;");&#39;;
            }
        } else {
            // 上传失败
            // 提示上传失败
            $show .= &#39;result.innerHTML = "<div style=\"color:#FF0000\"> 上传失败:&#39; . $info[&#39;message&#39;] . &#39;";&#39;;
        }
        $show .= "\n" . &#39;</script>';
        //$this->assign('_ajax_upload_',$show);
        header("Content-Type:text/html; charset=utf-8");

        exit($show);
        return;
    }

3. Mixed use of Java, www.2cto.com Microsoft.Net, and PHP three coding styles (or to be precise, borrowed the naming style of functions, files, or variables from Java and Microsoft.Net, but without PHP change). However, it is relatively consistent in use and the probability of problems is not too great, but I am not very used to it.

4. Write Business Logic and database operations in the controller code. I see that the code in the Model is basically very short. It seems that basically all the functions of the blog are written in the controller. It's more like the way Fat Controller is written, but it should be better to write the database operations in the Model (according to my understanding of MVC). Fat Model has many advantages over Fat Controller and facilitates code reuse.

5. Let me give you an example. When I was looking at the code, I found a comment.

if (!empty($id)) {
        $Blog = D("BlogView");
        $result = $Blog->where('Blog.id=' . $id)->find();  // 这里为什么用select()就读不出来
        if ($result) {
            $this->assign('vo', $result);
        } else {
            $this->redirect('index');
            return;
        }
    } else {
        $this->redirect('index');
    }

Because I am more concerned about database operations, I have read some ThinkPHP documents before. Please, friends who wrote this code, what you select in TP reads is a record set, and what you get in find is a record. Of course you can't read it if you assign it like this. You have to change $result to $result[0] to read it out. In this way, I feel that the TP Example writer is too irresponsible to the users. But it’s not a big problem, it’s just an RC version.

6. SQL requests mixed with strings, some of which I didn’t understand! ! ! It may take time to delve deeper. Excessive use of this type of SQL may cause security risks (such as SQL injection).

public function tag() {
        $Tag = M("Tag");
        if (!empty($_GET['name'])) {
            $name = trim($_REQUEST['name']);
            $list = $Tag->where("module='Blog' and name='$name'")->field('id,count')->find();
            $tagId = $list['id'];
            $count = $list['count'];
            import("@.ORG.Page");
            $listRows = 10;
            $fields = 'a.id,a.userId,a.categoryId,a.cTime,a.readCount,a.commentCount,a.title,c.title as category';
            $p = new Page($count, $listRows);
            $p->setConfig('header', '篇日志 ');
            $dao = D("Blog");
            $list = $dao->query("select " . $fields . " from " . C('DB_PREFIX') . 'blog as a,' . C('DB_PREFIX') . 'tagged as b, ' . C('DB_PREFIX') . 'category as c where b.tagId  in (' . $tagId . ') and a.categoryId= c.id and a.status=1  and a.id=b.recordId order by a.id desc limit ' . $p->firstRow . ',' . $p->listRows);
            if ($list) {
                $page = $p->show();
                $this->assign("page", $page);
                $this->assign('list', $list);
            }
            $this->assign('tag', $name);
            $this->assign("count", $count);
        } else {
            $list = $Tag->where("module='Blog'")->select();
            //dump($list);
            $this->assign('tags', $list);
        }
        $this->display();
    }

7. Coding style can reflect the level of a programmer. Compared with CI Examples, there is still a certain gap. The comments are written more casually. I sometimes write code and the comments are quite casual. Sometimes in order to respect other people, you still need to write comments with the same patience as writing code.

8. It has nothing to do with code. The accompanying user documentation is not very user-friendly. On my laptop, I saw that the fonts are very large and the line spacing is very large. A simple PHP code only displays two pages. Some codes use pictures for syntax highlighting, but the quality of the pictures is too low. Maybe I play too much with DSLRs. Creating HTML is actually convenient for users to use and search, but creating a PDF is a little more troublesome.

The above opinions are only for the Example of ThinkPHP 3.0 RC1. I haven't seen the core code, so I can't comment. At the same time, I don’t mean to deny the strength of the domestic MVC framework, but I think that the developers of TP should work more on some details and put more effort into improving the quality of TP’s manuals and examples!

Excerpted from Xiaoxia

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/478404.htmlTechArticleI downloaded the ThinkPHP code a few days ago and my impression is not as good as that of CodeIgniter (CI). Maybe it’s because I downloaded the latest RC version! The Examples inside are not complete, open a few...
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
thinkphp是不是国产框架thinkphp是不是国产框架Sep 26, 2022 pm 05:11 PM

thinkphp是国产框架。ThinkPHP是一个快速、兼容而且简单的轻量级国产PHP开发框架,是为了简化企业级应用开发和敏捷WEB应用开发而诞生的。ThinkPHP从诞生以来一直秉承简洁实用的设计原则,在保持出色的性能和至简的代码的同时,也注重易用性。

一起聊聊thinkphp6使用think-queue实现普通队列和延迟队列一起聊聊thinkphp6使用think-queue实现普通队列和延迟队列Apr 20, 2022 pm 01:07 PM

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了关于使用think-queue来实现普通队列和延迟队列的相关内容,think-queue是thinkphp官方提供的一个消息队列服务,下面一起来看一下,希望对大家有帮助。

thinkphp的mvc分别指什么thinkphp的mvc分别指什么Jun 21, 2022 am 11:11 AM

thinkphp基于的mvc分别是指:1、m是model的缩写,表示模型,用于数据处理;2、v是view的缩写,表示视图,由View类和模板文件组成;3、c是controller的缩写,表示控制器,用于逻辑处理。mvc设计模式是一种编程思想,是一种将应用程序的逻辑层和表现层进行分离的方法。

实例详解thinkphp6使用jwt认证实例详解thinkphp6使用jwt认证Jun 24, 2022 pm 12:57 PM

本篇文章给大家带来了关于thinkphp的相关知识,其中主要介绍了使用jwt认证的问题,下面一起来看一下,希望对大家有帮助。

thinkphp扩展插件有哪些thinkphp扩展插件有哪些Jun 13, 2022 pm 05:45 PM

thinkphp扩展有:1、think-migration,是一种数据库迁移工具;2、think-orm,是一种ORM类库扩展;3、think-oracle,是一种Oracle驱动扩展;4、think-mongo,一种MongoDb扩展;5、think-soar,一种SQL语句优化扩展;6、porter,一种数据库管理工具;7、tp-jwt-auth,一个jwt身份验证扩展包。

一文教你ThinkPHP使用think-queue实现redis消息队列一文教你ThinkPHP使用think-queue实现redis消息队列Jun 28, 2022 pm 03:33 PM

本篇文章给大家带来了关于ThinkPHP的相关知识,其中主要整理了使用think-queue实现redis消息队列的相关问题,下面一起来看一下,希望对大家有帮助。

thinkphp 怎么查询库是否存在thinkphp 怎么查询库是否存在Dec 05, 2022 am 09:40 AM

thinkphp查询库是否存在的方法:1、打开相应的tp文件;2、通过“ $isTable=db()->query('SHOW TABLES LIKE '."'".$data['table_name']."'");if($isTable){...}else{...}”方式验证表是否存在即可。

thinkphp3.2怎么关闭调试模式thinkphp3.2怎么关闭调试模式Apr 25, 2022 am 10:13 AM

在thinkphp3.2中,可以利用define关闭调试模式,该标签用于变量和常量的定义,将入口文件中定义调试模式设为FALSE即可,语法为“define('APP_DEBUG', false);”;开启调试模式将参数值设置为true即可。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.