am-mokhtari / numeric-code
numeric code generator with custom template
Requires
- php: ^8.2
This package is auto-updated.
Last update: 2024-11-15 00:30:55 UTC
README
Description
This package helps you to create safe and unpredictable numeric codes with your custome template.
The template you enter is a required value for the generator function and must contain a number of #
to replace each #
with a digit.
Note that this program can only create codes up to 8
digits!
The numbers generated by this package pass the following conditions:
-
The number of repetitions of each digit in the whole number cannot be more than two times.
- For example, the number
23242
is not allowed because the digit2
appears three times.
- For example, the number
-
Only one digit can appear twice in the whole number and the rest of the digits are not allowed to be repeated.
- For example, the number
2332
is not allowed.
- For example, the number
-
Only two consecutive digits are allowed together.
- For example, numbers
232
or234
are not allowed, but235
is allowed
- For example, numbers
-
Consecutive numbers can only appear once in the whole number.
- For example, in the number
2354
, because2
and3
are next to each other and4
and5
are next to each other, it is not allowed!
- For example, in the number
How to use
install package
composer require https://packagist.org/packages/am-mokhtari/numeric_code
use the generator() static function and set a template like below:
$string_code = NumericCode::generate('new code : #-#/#&#');
the output will be like this:
"new code : 3-5/6&3"
or
$string_code = NumericCode::generate('##-##');
the output will be like this:
"31-98"
.
.
توضیحات
این پکیج به شما کمک میکند تا کد های عددی ایمن و غیرقابل حدس با قالب دلخواه بسازید.
قالبی که وارد میکنید یک مقدار الزامی برای تابع سازنده است و باید شامل تعدادی #
باشد تا به جای هر #
یک رقم قرار گیرد.
توجه کنید که این برنامه فقط تا ۸
رقم کد ایجاد می کند!
اعدادی که توسط این پکیج ساخته میشوند شرط های زیر را پاس میکنند:
-
تعداد تکرار هر رقم در کل عدد نمیتواند بیش از دو مرتبه باشد.
مثلا عدد
۲۳۲۴۲
چون سه مرتبه عدد۲
ظاهر شده مجاز نیست. -
فقط یک رقم میتواند در کل عدد دو مرتبه ظاهر شود و باقی ارقام مجاز به تکرار نیستند.
مثلا عدد
۲۳۳۲
مجاز نیست. -
فقط دو رقم متوالی در کنار هم مجاز هستند.
مثلا عدد
۲۳۲
یا۲۳۴
مجاز نیستند ولی۲۳۵
مجاز است -
اعداد متوالی در کنار هم فقط یکبار میتوانند در کل عدد ظاهر شوند.
مثلا، در عدد
۲۳۵۴
چون۲
و۳
کنار هم و۴
و۵
کنار یکدیگر هستند و مجاز نیست!
نحوه ی استفاده
پکیج را با دستور زیر نصب کنید
composer require https://packagist.org/packages/am-mokhtari/numeric_code
از تابع استاتیک generator() استفاده کنید و قالب مورد نظر را به آن بدهید، مثل کد زیر:
$string_code = NumericCode::generate('new code : #-#/#&#');
خروجی چیزی شبیه به این خواهد بود:
"new code : 3-5/6&3"
یا
$string_code = NumericCode::generate('new code : ##-##');
خروجی چیزی شبیه به این خواهد بود:
"new code : 31-98"
.
.