class Vehicle {
// Stuff goes here!
}
在我们新建的Vehicle类中,用方法(即PHP函数)来联系我们的应用程序和Vehicle类的特性(characteristics)。每一个方法都是用来向应用程序描述Vehicle,这样我们用方法来实现某些功能。请考虑下面的例子(它显然是非函数的,即没有给出函数体):
class Vehicle {
function getWheels() {
// 逻辑上用来查询这里的车轮(即wheel)数
return($wheels);
}
function getDoors() {
// 逻辑上用来查询这里的车门(即door)数。
return($wheels);
}
}
这里,我们看到了两个“getter”函数。如果这看起来、听起来很熟悉的话,那是因为PHP的OOP与C或者java非常相似的缘故。真正的挑战是灵活的使用OOP、充分而又有效的使用封装。
为了确定在把Vehicle集成到你的应用程序这一过程中你需要懂得哪些内容,定义组成Vehicle的基本元素或许会有所帮助。例如,Vehicles可以按照车门的数目或者车轮的数目来组织。
如果我们想知道我们的Vehicle有多少个轮子,我们需要返回这一信息的函数。在PHP中,这一函数的实现可以如代码清单A所示。
现在我们的Vehicle类包含了一个叫着getWheels的方法了,当应用程序传递给它一个车辆类型时,它返回轮子的数目。那么,我们如何把车辆类型这一信息传递给Vehicle类呢?为了更好的理解这一问题,让我们演示一下用法,实现我们的类并调用它的getWheels方法来得到car类型车辆的车轮数目。
// 设置车辆种类
$vehicle = "car";
这样我们已经宣布了我们想创建的车辆类型为car。由于我们使用PHP,因此这个值可以是动态的,但如果这样的话很快就会难以用代码来处理(hard-code)它了。
为了使用这个类,我们首先需要在应用程序中创建该类的一个实例:
// 创建car类的一个新实例
$myVehicle = &new Vehicle;
我们刚刚创建了一个叫着myVehicle的Vehicle类的实例。它是Vehicle类的唯一实例,而且它包含了Vehicle所包含的所有数据(方法和属性)。
现在是找出我们的car到底有多少个轮子的时候了:
// 通过向getWheels方法传递车辆类型来获取车轮数目
$numWheels = $myVehicle->getWheels($vehicle);
正如你所见,我们调用了getWheel方法并向它传递了车辆种类。如果一切顺利的话,我们就得到了我们所需的数据:
// 打印车轮数目
PRint "$vehicle has $numWheels wheels.";
如果我们想得到车门数目,我们需要编写另一个检查车门数的方法,如代码清单B所示。
易于编程、易于管理
正如你在这个简单的演示中所看到的那样,在PHP中实现面相对象的编程并不困难。像我们在Vehicle类中那样采用OOP和类,创建一个购物车(shopping cart)并不会非常麻烦。由于采用了面向对象的编程思想,代码易读、易维护、易升级。
清单C给出了我们在这里所讨论汽车分类应用程序的更高版本的代码。它充分演示了PHP的面相对象性能。

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Laravel's service container and service providers are fundamental to its architecture. This article explores service containers, details service provider creation, registration, and demonstrates practical usage with examples. We'll begin with an ove


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

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version
SublimeText3 Linux latest version

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.

WebStorm Mac version
Useful JavaScript development tools

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
