search
PHPCMF+php+diary (1)Jul 30, 2016 pm 01:31 PM
applicationcontrollermodelnewsphp

Today is the first time to learn PHP. Since the backend is written in PHP, and it uses the open source framework PHPCMF, I have to give it a try,

But writing the backend in PHP is really convenient and faster, compared to Java. Be more relaxed and put aside other factors first. Just want speed, just test

Maybe I am just starting to learn PHP half-way, and have not even learned the grammar. I have direct contact with PHPCMF, so I first find someone familiar with the use of the framework

How to quickly build a module with PHPCMF is what I care about most.

Okay, enough nonsense, let’s get straight to the point.

First import the phpcmf official download package into the zend editor. If there is an error, don’t worry about it. If there is a x sensitive person, there is nothing you can do, as shown below:

We are also concerned about it Just the above four folders, you can start quickly, don’t worry about the others for now,

(1) application folder

If I need to make a news module now, the first thing we need to do is Create a News folder under the application, as follows:

The other folders are all built-in, so don’t worry about them. Next, we need to know what else we need?

Controller, yes, it is a controller. This is very important in PHP. If you don’t know how to build it, if you are just starting out like me, then you can look at any other file under the application Folder, such as User There is a Controller folder under it. We also need to create such a folder

See, we only need to create the same folder Controller, and don’t worry about the others, such as Conf and Menu folder are currently not used, so don’t worry about it. After the folder is created, we need to write the interface next, which is to create a php file under the Controller folder. However, the interface is divided into front-end and back-end, such as news There are front-end displays, back-end editing, additions, deletions, etc. We need to care about this, and there are certain requirements for naming.

Look at the News. Below are the two php files I created. First, let’s talk about the naming rules. Regarding the problem,

First of all, you can give it a random name, and then add Controller.class. If the interface is a background interface, then you need to add AdminController.class. This is very important,

What you need next What I know is how to write this class file,

The first step is that the namespace must be present, the namespace module name is Controller

The second step is to declare who the parent class is, if the interface is the front end Yes, you use HomeBaseController. If the interface is background, you use AdminbaseController, as shown in the figure below:

The third step is to create a class, class NewsController extends HomeBaseController{}

The fourth step is to write the method in the class, which is the interface. For example, what I wrote above is getNewsList(). Finally, just echo the returned data

At this point, the application is half over. There is nothing, as shown in the picture I also drew a circle, which is the address to access this interface. Its structure is also easy to understand

// www.fsfd.com/XXXX/index.php?g=News&m=News&a=getNewsList

Among them, www.fsfd.com/ is the domain name or public IP, XXXX/ is the project name, which is the project name, index.php?This is fixed, there is this file under the project name, you don’t need to change it What, g=Newsthis represents which folder under the application, that is, which module, &m=NewsThis code is the first paragraph of the name of the php file you created under the Controller folder (NewsController. class.php), you can choose this name casually, &a=getNewsList represents the methods below this class. Next, we need to be familiar with the other half of the application that we are more related to, database,

There is a Common folder under the application file, and there is a Model folder under it, that is This Model folder is what we need to care about. In fact, each model file below represents a table in the database,

Let’s first take a look at the models it comes with, such as User

The first step is to namespace, namespace CommonModel;

The third step is to define the class UsersModel extends CommonModel{}. You don’t need to worry about the things inside. You can see that under User is data verification and time conversion. It seems to process passwords. Anyway, I I can’t understand it now. It seems that we don’t need to think about the field definitions needed to connect data. Wait,

Then next we need to write our own, it’s very simple. It’s just a statement

That’s it. PHP itself will match the one in MySQL. The way it parses is like this, and the data table has a The prefix, followed by the lowercase table name, together form the name of a database table. For example, the table in my database is wust_news, and then under the Model, you must be consistent with the second half of the database table field. , it’s OK to just capitalize the first letter, so it will be automatically parsed and matched successfully,

The application is over now


(two ) data folder

There is actually nothing to say about this. You can tell from the English name that data is placed under this folder, such as cache data. Under the runtime file, the pictures you uploaded in the background management interface Ah, videos, etc., you can create a folder here. Under the conf folder is the routing settings. I don’t know the details. It seems that you don’t need to set it manually. There is no need to say anything specifically here. What

(3) tpl folder

The folder where the front-end templates are placed, you will understand as soon as I say it. For example, when you open a web page, the displayed things are placed in this Yes, the main thing is to look at its hierarchical structure

This is mainly to look at what modules are under the application. Compared with that module, there must be a Controller folder under it, so there is also a Controller folder under the tpl folder. This is it, one is for the client and the other is for the mobile phone. Let’s take a look at what’s under User. Pay attention to the names being the same,

The red × above does not mean an error, it’s just imported. Ignore it, the code we finally write is to be uploaded to the server, so it is correct. If there is a sensitive person, there is nothing we can do. Haha, first we need to look at the Controller under the User folder under the application folder. Let’s just look at a class, CenterController personal center, and pay attention to the two situations $this->display(); and $this->display(':center');. If you use: , then there must be center.html,

, one level below the User folder under tpl. If it is $this->display();, then first you need to see what the name of the controller is What, then go to User and create a folder with the first half of the name, capitalize the first letter, and then below, you can see the html file consistent with the method name,

It should be very clear from the picture. This part is over now, (4) tpl_admin background management module

Please see this part (3) Here is where the background management things are specially placed. The situation is the same as the tpl folder, so I won’t repeat it. Book it

Copyright statement: This article is an original article by the blogger and may not be reproduced without the blogger's permission.

The above introduces PHPCMF+php+diary (1), including aspects of the content. I hope it will be helpful to friends who are interested in PHP tutorials.

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
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

SpringBoot扫描不到Controller怎么解决SpringBoot扫描不到Controller怎么解决May 14, 2023 am 08:10 AM

SpringBoot小白创建项目,扫描不到Controller一系列问题1.2.3.4.5.6.还有一种办法是在启动服务类的入门,添加@ComponentScan(basePackages={“xxx.xxx.xx”,“xxx.xxx.xx”})里面的是包的全限定名,可以为多个SpringBoot自定义controller无法扫描到SpringBoot自定义controller路由找不到,原因是启动类和自定义的Controller包不在同一级目录下。官方建议application.java放的位

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

python WSGI Application原理是什么python WSGI Application原理是什么May 19, 2023 pm 01:25 PM

本篇文章所依赖的python环境为:什么是WSGIWSGI也称之为web服务器通用网关接口,全称是webservergatewayinterface。它定义了在python中web服务器与web应用程序之间应该如何通信并且处理http请求和响应的一个标准,注意,它只是一个协议,或者说是规范、标准,你也可以不按这个标准来,就像我们上一篇文章所写的web服务器那样。WSGI也分为应用程序和服务器网关,其中我们熟知的Flask就是属于应用程序,uWSGI、wsgiref属于服务器网关。个人感觉,WSG

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

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

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use