know yourselves. information, computer, 7 wonders, various.

Tuesday, April 21, 2020

PHP_Part 3_অপারেটর




 অপারেটর (Operator)
Operators হলো কোন বিশেষ ধরনের চিহ্ন বা শব্দ যা কম্পাইলারকে বিশেষ কোন গানিতিক বা লজিক্যাল কাজ করার নির্দেশ দেয়। অপারেটরের সাথে যে ভেরিয়েবল গুলো থাকে সেগুলিকে Operand বলে। যেমন দুইটি  ভেরিয়েবল যেমন A এবং B, যদি A+B লেখা হয় তবে কম্পাইলার A B কে যোগ করবে। সুতরাং এখানে প্লাস সাইন (+) হচ্ছে Opertor এবং A এবং B হচ্ছে Operand.
php তে এ ধরনের অনেক গুলো Operator আছে। যেমন Arithmetic Operatior, Assignment Operator, Logical Operator, Relational Operator, Conditional Operator.


Arithmetic Operator
php তে মোট ৪টি arithmetic operators আছে।
Symbol
Operator
Purpose
+
Addition
২টি Operand কে যোগ করে
-
Subtraction
২টি Operand কে বিয়োগ করে
*
Multiplication
২টি Operand কে গুন করে
/
Division
২টি Operand কে ভাগ করে
% (modulo)
Remainder after division
২টি Operand কে ভাগ করার পর ভাগশেষ প্রদর্শন করে

Arithmetic  অপারেটরের উদাহরণ:

১.        আপনার এডিটরে নিম্নোক্ত প্রোগ্রামটি লিখুন। এবার ফাইলটিকে PHP_programOparetor.php  নামে সেভ করুন।
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<title>Arithmetic Oparetor</title>
</head>
<body>
<h2>Arithmetic Oparetor</h2>
<?php
$addition = 2 + 4;
$subtraction = 6 - 2;
$multiplication = 5 * 3;
$division = 15 / 3;
$modulus = 5 % 2;
echo "Perform addition: 2 + 4 = ".$addition."<br />";
echo "Perform subtraction: 6 - 2 = ".$subtraction."<br />";
echo "Perform multiplication:  5 * 3 = ".$multiplication."<br />";
echo "Perform division: 15 / 3 = ".$division."<br />";
echo "Perform modulus: 5 % 2 = " . $modulus
     . ". Modulus is the remainder after the division operation has been performed. 
     In this case it was 5 / 2, which has a remainder of 1.";  ?> </body> </html>
ফলাফল :           ব্রাউজারে  PHP_programOparetor.php  ফাইলটি ওপেন করুন। নিম্নের চিত্রের মত ফলাফল দেখতে পাবেন।


 Arithmetic  অপারেটরের উদাহরনের ফলাফল
অ্যাসাইনমেন্ট অপারেটর:
ইকুয়াল টু (=) সিম্বলকে assignment operator বলে । সাধারনত Arithmetic operator (+,-,*,/,%) এর সাথে assignment অপারেটর একত্রে যোগ হয়ে Arithmetic Assignment Operators তৈরী হয়। এগুলি হচ্ছে +=, -=, *=, /= এবং %= ।
অ্যাসাইনমেন্ট অপারেটর মূলত: ভেরিয়েবল ভ্যালু অ্যাসাইন করাকে বুঝায়। নিম্নের অ্যাসাইনমেন্ট অপারেটর এবং তার ইকুইভ্যালেন্ট বা সমান স্টেটমেন্ট দেয়া হল:
ক্রমিক
অপারেটর
উদাহরণ
ইকুইভেলেন্ট মান
1
=
x=y

2
+=
x+=y
x=x+y
3
-=
x-=y
x=x-y
4
*=
x*=y
x=x*y
5
/=
x/=y
x=x/y
6
%=
x%=y
x=x%
7
.=
$my_str.="hello";
$my_str = $my_str . "hello";

ইনক্রিমিন্টিং বা ডিক্রিমেন্টিং অপারেটর

অপারেটর

নাম

বর্ননা

++ x

প্রি-ইনক্রিমেন্ট

এক এক করে x  ভ্যালু বাড়বে তারপর x রিটার্ন করে
x ++

পোষ্ট-ইনক্রিমেন্ট

x  রিটার্ন করবে তারপর এক এক করে x  বাড়বে
-- x

প্রি-ডিক্রিমেন্ট

এক এক করে x  ভ্যালু কমবে তারপর x রিটার্ন করে
x --
পোষ্ট-ডিক্রিমেন্ট
x রিটার্ন করবে তারপর এক এক করে x কমবে

কম্পারিজন অপারেটর

Comparison operators allows you to compare two values:
Operator
Name
Description
Example
x == y
Equal
True if x is equal to y
5==8 returns false
x === y
Identical
True if x is equal to y, and they are of same type
5==="5" returns false
x != y
Not equal
True if x is not equal to y
5!=8 returns true
x <> y
Not equal
True if x is not equal to y
5<>8 returns true
x !== y
Not identical
True if x is not equal to y, or they are not of same type
5!=="5" returns true
x > y
Greater than
True if x is greater than y
5>8 returns false
x < y
Less than
True if x is less than y
5<8 returns true
x >= y
Greater than or equal to
True if x is greater than or equal to y
5>=8 returns false
x <= y
Less than or equal to
True if x is less than or equal to y
5<=8 returns true

লজিক্যাল অপারেটর

Logical Operators
Operator
Name
Description
Example
x and y
And
True if both x and y are true
x=6
y=3
(x < 10 and y > 1) returns true
x or y
Or
True if either or both x and y are true
x=6
y=3
(x==6 or y==5) returns true
x xor y
Xor
True if either x or y is true, but not both
x=6
y=3
(x==6 xor y==3) returns false
x && y
And
True if both x and y are true
x=6
y=3
(x < 10 && y > 1) returns true
x || y
Or
True if either or both x and y are true
x=6
y=3
(x==5 || y==5) returns false
! x
Not
True if x is not true
x=6
y=3
!(x==y) returns true

অ্যারে অপারেটর

Operator
Name
Description
x + y
Union
Union of x and y
x == y
Equality
True if x and y have the same key/value pairs
x === y
Identity
True if x and y have the same key/value pairs in the same order and of the same types
x != y
Inequality
True if x is not equal to y
x <> y
Inequality
True if x is not equal to y
x !== y
Non-identity
True if x is not identical to y
Previous Post                                                                                           Next Post

  বিস্তারিত জানতে নিচের বইটি সংগরহ করে নিন।

Book Name: Mastering Microsoft  Word
Writer: Bappi Ashraf
Published By: Gyankosh Prokashani
Amount of Pages: 464
First Publish: October-2004
Last Edition: We've February-2015 edition. Future edition may be existed!
Book Price: BDT 350 (30% Discount)
 The writer of this book has told that he has written this book with the concept of "teach yourself". On the other hand, Web Design is a thing which is interesting to learn. He has also told that the book is full of fan and enjoyment so that a person can learn Web Design by himself by playing with the example projects of this book.  Book's CD Link below... 

 cd

RELATED POST LINKS BELOW ********************************************

PART1 :- PHP কি, PHP ফাইল, XAMPP ইনস্টলেশন, ইনস্টলিং XAMPP

PART3:- Operator, Arithmetic Operator, অ্যাসাইনমেন্ট অপারেটর, ইনক্রিমিন্টিং বা ডিক্রিমেন্টিং অপারেটর, কম্পারিজন অপারেটর, লজিক্যাল অপারেটর, অ্যারে অপারেটর


PART 10
PART 11

Php এবং HTML ফর্ম, হ্যান্ডেলিং Php- ফরম, get মেথড, post মেথড, Php Date() ফাংশন, Date - ডেট ফরমেট করা, Date – টাইমস্ট্যাম্প, PHP Date / Time ফাংশন

PART 12

PART 13
Php ফাইল হ্যন্ডেলিং, ফাইল আপলোড, আপলোড-স্ক্রিপ্ট তৈরি করা, আপলোডের ক্ষেত্রে বিধি নিষেধ আরোপ, আপলোডকৃত ফাইলকে সেভ করা,
PART 14 পিএইচপি কুকি (PHP Cookies), কুকি (Cookie )কি, কুকি তৈরি, কুকি পুনরুদ্ধার করা, কুকি মুছে ফেলা, পিএইচপি: ই-মেইল প্রেরণ, PHP secure Email,