Home Backend Development PHP Tutorial PHP generates unique promotion/offer/discount code (with source code)_PHP tutorial

PHP generates unique promotion/offer/discount code (with source code)_PHP tutorial

Jul 21, 2016 pm 03:13 PM
php discount Promotion only Discount have Source code Now generate electronic of code type

Every e-commerce website now has one or more types of offer/discount/coupon systems, let me share with you how to generate unique promotion/discount codes in PHP. The main purpose is to implement a discount code system, which can be used to track users from certain sources. For example, when some hosts are on promotion, discount codes will be generated when linking to other pages, and there are more promotional codes. Therefore, today we will discuss the implementation process of such a discount code

Consider the needs
The code should be easy to remember, so it is a good idea to keep the length short so that the user can Remember it easily
with no special characters! It should be an alphanumeric combination as it will always be easier for the user to remember the
length of the promotion/discount code correctly. There is not a standard length as it depends on the length of the code you want to generate, for example if you want to generate a code of 1000 codes then you need to be at least 4 characters in the code. Promotion/offer code length is usually 4 to 8 characters, but it depends on your requirements.
Okay then, let’s get started! Let's take a look at the code and then I'll explain it in detail. It's easy

Copy the code The code is as follows:

/**
* @param int $no_of_codes//Define an int type parameter to determine how many discount codes to generate
* @param array $exclude_codes_array//Define an array of exclude_codes_array type
* @param int $ code_length //Define a code_length parameter to determine the length of the discount code
* @return array//Return array
*/
function generate_promotion_code($no_of_codes,$exclude_codes_array='',$code_length = 4)
{
$characters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
$promotion_codes = array();//This array is used Receive the generated discount code
for($j = 0; $j < $no_of_codes; $j++)
{
$code = "";
for ($i = 0; $i < $code_length; $i++)
{
$code .= $characters[mt_rand(0, strlen($characters)-1)];
}
//If the generated 4 digits The random number is no longer in the $promotion_codes function we defined
if(!in_array($code,$promotion_codes))
{
if(is_array($exclude_codes_array))//
{
if(!in_array($code,$exclude_codes_array))//Exclude already used discount codes
{
$promotion_codes[$j] ​​= $code; assign the generated new discount code to the promotion_codes array
}
else
{
$j--;
}
}
else
{
$promotion_codes[$j] ​​= $code;//Add discount Assign codes to array
}
}
else
{
$j--;
}
}
return $promotion_codes;
}
echo '

Promotion / Discount Codes

';
echo '
'; 
print_r(generate_promotion_code(50,'',4));
echo '< /pre>';
?>

The code consists of three parameters.
The first parameter is the number of discount codes you want to generate (here it is to generate 50 indivual). The second parameter, exclude array, ensures that unique discount codes are generated in the current list, so if you already have some unused codes in the database, you can pass it to exclude. The last parameter is the length of the discount code. This function will return a discount code of specified length. Here is a 4-digit discount code.

Here I have used a combination of numbers and uppercase letters, assigned to the string of $characters, you can try using lowercase letters or any other combination of letters. What this feature does is generate a unique discount code. This is the PHP version, next time I will give you a NET version, I hope it can help everyone
Download address

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/326424.htmlTechArticleEvery e-commerce website now has one or more types of offers/discounts/coupon systems for everyone Share how to generate unique promotion/discount codes in PHP. Mainly to achieve a...
Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

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

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

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

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

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

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

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

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

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

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

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

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

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

See all articles