Zend宣布针对云计算的新的PHP许可选择
近日,Zend针对其PHP产品线宣布了一个Zend无限订阅的许可选择,用于解决云计算环境下软件运行实例经常发生变化所导致的许可问题。 虚拟化与云计算技术对传统的软件许可模式(比如说每个用户一个许可、每个服务器一个许可)提出了挑战。在使用这两种技术的环
近日,Zend针对其PHP产品线宣布了一个“Zend无限订阅”的许可选择,用于解决云计算环境下软件运行实例经常发生变化所导致的许可问题。
虚拟化与云计算技术对传统的软件许可模式(比如说每个用户一个许可、每个服务器一个许可)提出了挑战。在使用这两种技术的环境下,运行的软件数量经常会发生变化,如果手头没有充足的许可,新运行的实例可能会违背许可要求。
这并非一个新问题。早在2008年,InfoQ就曾报道过,微软开始澄清在虚拟化环境下其产品的许可问题。其他一些公司于2006年就开始重新思考由于多核与hypervisor技术的巨大变化所导致的软件许可问题。SaaS和开源许可是厂商解决变化的软件许可问题的一种解决方案。
Zend的此次声明主要是针对其PHP产品线许可,包括应用服务器(Zend Server)、多服务器的应用管理器(Zend Server Cluster Manager)以及一个PHP IDE(Zend Studio)。对这些产品的支持也有一个无限的许可选择。此次声明的重要性与PHP日益成为服务器端应用的普遍标准是密切相关的。Zend标榜自己是个 “PHP公司”,无限许可旨在为那些采用PHP进行服务器端Web应用开发的公司提供一定的竞争优势。
许可问题难免要经历协商的过程,作为读者的你来说,当公司迁移到云和虚拟化数据中心时,你们会采取何种解决方案呢?
http://www.infoq.com/news/2010/09/zend-php-licensing

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



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

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
