Correctly Detect Credit Card Type Php.In this article I will show you how you correctly detect credit card type in you php function. Almost all credit cards can be validating using their regular expression. Following is the simple php function using that function in your site code you can easily detect the CC type.
23 October, 2018
Released New Features Sublime Text 3.0
Programing Coderfunda October 23, 2018 editor, php, sublime No comments
- Released New Features Sublime Text 3.0
This Update is Stable update of the sublime text, previous update come last year september with beta version. In this update look and feel of the sublime is totaly changed and everythings is look awesome, i just loved it.
New Things Sublime 3.0
- New Icon, New UI theme and full DPI support.
- Added new color schemes Breakers, Mariana and Sixteen. Mariana is one of my faviourt which i have start using.
- Improved Syntax Heighligter for C#, Java, Pythan and R.
- Improvements for touchpad scrolling.
- The improvements for macOS are Touch Bar support
for more change log please read this
In case you’ve purchased your Sublime Text license from Feb 2013 onwards, it’ll be valid for Sublime Text 3.0. If that isn’t the case, feel free to perform an upgrade by visiting this link. For a free evaluation of Windows, Linux, and Mac versions, visit this link.
Released New Features Sublime Text 3.0
Programing Coderfunda October 23, 2018 editor, php, sublime No comments
- Released New Features Sublime Text 3.0
This Update is Stable update of the sublime text, previous update come last year september with beta version. In this update look and feel of the sublime is totaly changed and everythings is look awesome, i just loved it.
New Things Sublime 3.0
- New Icon, New UI theme and full DPI support.
- Added new color schemes Breakers, Mariana and Sixteen. Mariana is one of my faviourt which i have start using.
- Improved Syntax Heighligter for C#, Java, Pythan and R.
- Improvements for touchpad scrolling.
- The improvements for macOS are Touch Bar support
for more change log please read this
In case you’ve purchased your Sublime Text license from Feb 2013 onwards, it’ll be valid for Sublime Text 3.0. If that isn’t the case, feel free to perform an upgrade by visiting this link. For a free evaluation of Windows, Linux, and Mac versions, visit this link.
Program of Check Prime Number in Php
Programing Coderfunda October 23, 2018 php, prime_number No comments
How to Check Prime Number in Php
How to Check Prime Number in Php. Prime Number is the natural number which is divided by 1 and itself. So Today i am going to share a program with you in which you can check either a number is a prime number or not. For example 7 is the prime number which only divided by 1 and itself.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | <?php function checkPrimeNumber($n){ for($i=2; $i<$n; $i++){ if($n%$i==0){ return false; }else{ return true; } } } $a=checkPrimeNumber(11); if($a) { echo "Prime Number"; }else{ echo "Not a Prime Number"; } ?> |
Program of Check Prime Number in Php
Programing Coderfunda October 23, 2018 php, prime_number No comments
How to Check Prime Number in Php
How to Check Prime Number in Php. Prime Number is the natural number which is divided by 1 and itself. So Today i am going to share a program with you in which you can check either a number is a prime number or not. For example 7 is the prime number which only divided by 1 and itself.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
function checkPrimeNumber($n){
for($i=2; $i<$n; $i++){
if($n%$i==0){
return false;
}else{
return true;
}
}
}
$a=checkPrimeNumber(11);
if($a) {
echo "Prime Number";
}else{
echo "Not a Prime Number";
}
?>
|