php OOP类的用法
php类的用法 今天我们就php class用基本用法来讲述一下,首先要你明白什么是类:类的定义如下:
具有独特性,具有灵活性,具有通用性,重要性,这是等的定义了,更详细的内容各位到www.111cn.cn查看就是了,好了为了让大家能更清楚的了解什么是OOP我们就来例子.
Class user{
var $u_uid; //username id english
var $u_mbname; // use temptlete
var $u_css; //document stylewww.111cn.cn
var $u_documentbg; // full document background
var $u_csstop; // doucument top background
var $u_cssbottom; // bottom background
var $u_realname; // username realname Chinse
var $u_id; // tablename id replace tag;
var $u_edu;
var $u_work;
var $u_head;www.111cn.cn
var $u_sitename;
var $u_visited;
var $u_blog;
var $host;
function userinfo($id){
$id =$this->safe_function($id);
if(empty($id) || !is_numeric($id)){exit("<script>location='error.html';</script>");}
$sql = "select * from uidname where u_id='$id'";
$result = mysql_query($sql) or die("Error system busy.....plase wait!");
if(mysql_num_rows($result)){
$rs = mysql_fetch_object($result);
$this->u_id = $rs->id;www.111cn.cn
$this->u_uid = $rs->username;
$this->u_realname = $rs->realname;
$this->u_documentbg = $rs->documentbg;
$this->u_csstop = $rs->csstop;
$this->u_cssbottom = $rs->cssbottom;
$this->u_mbname = $rs->mbname;
$this->u_edu = $rs->edu;
$this->u_work = $rs->works;
$this->u_sitename = $rs->sitename;
$this->u_visited = $rs->visited;
$this->u_blog = $rs->u_id;
}else{
header("location:blog/error.php");exit;
}
}
}
注意:本站原创www.111cn.cn

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.
