• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

[转]类与PHP (I)_php

php 搞代码 7年前 (2018-06-19) 191次浏览 已收录 0个评论

Classes and php

Rod Kreisler

The hardest concept I’ve tried to understand since beginning to use PHP was that of classes. I’d never used a database engine but learning to use mysql, at least for the more basic functions, was a breeze. Having never used OOP before, classes were novel as well, but understanding the theory and why it was useful escaped me. I knew they must be powerful as "everything" is programmed using OOP, but for the life of me, although I thought I understood the mechanics, I couldn’t see the usefulness. Then, just a few days ago, while trying to figure out how to do something with regular functions it hit me just how doing it with objects would make my job much simpler! I’m going to try to explain about them in plain English and hopefully help others like myself.

http://www.gaodaima.com/46419.html类与PHP (I)_php

Classes are nothing more than a collection of variables and functions acting on those variables. They provide a means of thinking about things in real world terms. In other words they describe an object. An object, or instance, of a class is an actual "living, breathing" structure of that class. Let’s say we want to describe a bicycle. A proper class of a bicycle might have the variables $pedals, $chain, $front wheel, $rear wheel, $brakes, and $handle_bars. Functions of the bicycle would include Stop(), Accelerate(), Coast(), TurnLeft() and TurnRight(). You can think of your script as the entity operating that bike. The function Accelerate() could be passed an argument such as $Braking_Force and use that information along with the defined instance variables (probably $brakes and $wheels) and output some result back to your script.

Interesting, but couldn’t all this be accomplished using regular variables and functions? Yes it could, and if you only had one bike in your script it probably wouldn’t make much sense to define a class just for it. But what if you needed several bicycles? It could become quite complex keeping track of all those variables and making sure you pass the correct variables to the different functions, and using objects cuts down on the number of variables you need to pass because the function automatically has available to it all the variables describing the object the function is acting upon. Also, class definitions are easily included in different scripts and you’ll be assured that a bicycle works the same way in each script!

Let’s create a class that I actually use on almost every page on my site and you might find useful, too.

I don’t know about you, but when I’m writing a dynamic web page I hate to have to stop thinking about the logical flow to worry about properly formatting my HTML. As a consequence of this, I often end up with not so attractive pages because I don’t want to worry about font faces and sizes, or background and text colors. The solution: using a PHP class to set HTML output attributes with functions to format the text!

I call the class "Style". It contains the following variables that set important HTML attributes for formatting the output:

<?php

class Style {

    var $text;
    var $alink;
    var $vlink;
    var $link;
    var $bgcol;
    var $face;
    var $size;
    var $align;
    var $valign;

}

?>

I’m sure you’re familiar with HTML so the variables should be self- explanatory. Next I created a function for Style called Style:

<?php

class Style {

function Style ($text="#000000",$alink="#AA00AA",
$vlink="#AA00AA",$link="#3333FF",
$bgcol="#999999",$face="Book Antiqua",$size=3,$align="CENTER",$valign="TOP") {

    $this->text=$text;
    $this->alink=$alink;
    $this->vlink=$vlink;
    $this->link=$link;
    $this->bgcol=$bgcol;
    $this->face=$face;
    $this->size=$size;
    $this->align=$align;
    $this->valign=$valign;

}

}
?>

 

欢迎大家阅读《[转]类与PHP (I)_php》,跪求各位点评,若觉得好的话请收藏本文,by 搞代码


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:[转]类与PHP (I)_php

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址