Movie review score
5
PHP 5 Variables
ভেরিয়েবল তথ্য সংরক্ষণের জন্য "পাত্রে" হয়।
তৈরি করা (ঘোষণা) পিএইচপি ভেরিয়েবল
পিএইচপি ইন, একটি পরিবর্তনশীল $ চিহ্ন সঙ্গে শুরু হয়, পরিবর্তনশীল নাম অনুসরণ করে:
Example
<?php
$txt = "Hello world!";
$x = 5;
$y = 10.5;
?>
$txt = "Hello world!";
$x = 5;
$y = 10.5;
?>
উপরের বিবৃতিগুলি কার্যকর করার পরে, পরিবর্তনশীল $ txt মান হ্যালো বিশ্বকে ধরে রাখবে, পরিবর্তনশীল $ x মানটি 5 ধরে রাখবে এবং পরিবর্তনশীল $ y মানটি 10.5 ধরে রাখবে।
দ্রষ্টব্য: আপনি একটি পরিবর্তনশীল একটি টেক্সট মান বরাদ্দ করার সময়, মান কাছাকাছি কোট রাখুন।
দ্রষ্টব্য: অন্য প্রোগ্রামিং ভাষার বিপরীতে, পিএইচপি একটি পরিবর্তনশীল ঘোষণা করার জন্য কোন কমান্ড আছে। এটি আপনি এটি প্রথম একটি মান বরাদ্দ মুহূর্ত তৈরি করা হয়।
তথ্য সংরক্ষণের জন্য পাত্রে হিসাবে ভেরিয়েবল চিন্তা করুন।
PHP Variables
একটি পরিবর্তনশীল একটি সংক্ষিপ্ত নাম থাকতে পারে (যেমন x এবং y) বা আরো বর্ণবাদী নাম (বয়স, carname, total_volume)।
- পিএইচপি ভেরিয়েবল জন্য নিয়ম:
- একটি পরিবর্তনশীল $ চিহ্ন দিয়ে শুরু হয়, তারপরে পরিবর্তনশীলের নাম অনুসরণ করে
- একটি পরিবর্তনশীল নাম একটি অক্ষর বা আন্ডারস্কোর চরিত্র দিয়ে শুরু করা আবশ্যক
- একটি পরিবর্তনশীল নাম একটি সংখ্যা দিয়ে শুরু করতে পারবেন না
- একটি পরিবর্তনশীল নাম শুধুমাত্র আলফা-সংখ্যাসূচক অক্ষর এবং আন্ডারস্কোর থাকতে পারে (A-Z, 0-9, এবং _)
- পরিবর্তনশীল নাম কেস সংবেদনশীল ($ বয়স এবং $ AGE দুটি ভিন্ন ভেরিয়েবল)
আউটপুট ভেরিয়েবল
The PHP
echo
statement is often used to output data to the screen.
The following example will show how to output text and a variable:
Example
<?php
$txt = "W3Schools.com";
echo "I love $txt!";
?>
$txt = "W3Schools.com";
echo "I love $txt!";
?>
নিচের উদাহরণটি উপরের উদাহরণ হিসাবে একই আউটপুট তৈরি করবে:
Example
<?php
$txt = "W3Schools.com";
echo "I love " . $txt . "!";
?>
$txt = "W3Schools.com";
echo "I love " . $txt . "!";
?>
The following example will output the sum of two variables:
Example
<?php
$x = 5;
$y = 4;
echo $x + $y;
?>
$x = 5;
$y = 4;
echo $x + $y;
?>
দ্রষ্টব্য: আপনি ইকো স্টেটমেন্ট এবং পরবর্তী অধ্যায়ে পর্দায় তথ্য আউটপুট কিভাবে আউটপুট সম্পর্কে আরো জানতে পারবেন।
PHP is a Loosely Typed Language পিএইচপি একটি স্বল্প টাইপ ভাষা
উপরের উদাহরণে, লক্ষ্য করুন যে আমাদের পিএইচপি বলা হয়নি যা ডাটা পরিবর্তনশীল।
পিএইচপি স্বয়ংক্রিয়ভাবে তার মান উপর নির্ভর করে, পরিবর্তনশীল রূপান্তর সঠিক তথ্য টাইপ।
সি, সি ++, এবং জাভা অন্যান্য ভাষাগুলিতে, প্রোগ্রামারকে এটি ব্যবহার করার আগে পরিবর্তনশীল নাম এবং ধরন ঘোষণা করতে হবে।
পিএইচপি ভেরিয়েবল সুযোগ
পিএইচপি, ভেরিয়েবল স্ক্রিপ্টে যে কোন জায়গায় ঘোষিত হতে পারে।
একটি পরিবর্তনশীলের সুযোগ স্ক্রিপ্টের অংশ যেখানে পরিবর্তনশীল উল্লেখ / ব্যবহার করা যেতে পারে।
পিএইচপি তিনটি ভিন্ন পরিবর্তনশীল scopes আছে:
- local
- global
- static
A variable declared outside a function has a GLOBAL SCOPE and can only be accessed outside a function:
Example
<?php
$x = 5; // global scope
function myTest() {
// using x inside this function will generate an error echo "<p>Variable x inside function is: $x</p>";
}
myTest();
echo "<p>Variable x outside function is: $x</p>";
?>
$x = 5; // global scope
function myTest() {
// using x inside this function will generate an error echo "<p>Variable x inside function is: $x</p>";
}
myTest();
echo "<p>Variable x outside function is: $x</p>";
?>
https://www.w3schools.com/php/php_variables.asp
A variable declared within a function has a LOCAL SCOPE and can only be accessed within that function:
Example
<?php
function myTest() {
$x = 5; // local scope echo "<p>Variable x inside function is: $x</p>";
}
myTest();
// using x outside the function will generate an errorecho "<p>Variable x outside function is: $x</p>";
?>
function myTest() {
$x = 5; // local scope echo "<p>Variable x inside function is: $x</p>";
}
myTest();
// using x outside the function will generate an errorecho "<p>Variable x outside function is: $x</p>";
?>
বিভিন্ন ফাংশনে একই নামের সাথে স্থানীয় ভেরিয়েবল থাকতে পারে, কারণ স্থানীয় ভেরিয়েবল শুধুমাত্র সেই ফাংশন দ্বারা স্বীকৃত হয় যা তারা ঘোষিত হয়।
PHP The global Keyword
The
global
keyword is used to access a global variable from within a function.
To do this, use the
global
keyword before the variables (inside the function):Example
<?php
$x = 5;
$y = 10;
function myTest() {
global $x, $y;
$y = $x + $y;
}
myTest();
echo $y; // outputs 15?>
$x = 5;
$y = 10;
function myTest() {
global $x, $y;
$y = $x + $y;
}
myTest();
echo $y; // outputs 15?>
পিএইচপিও গ্লোবালস [ইন্ডেক্স] নামক একটি অ্যারের সমস্ত গ্লোবাল ভেরিয়েবল সঞ্চয় করে। সূচী পরিবর্তনশীল নাম ধারণ করে। এই অ্যারে ফাংশন মধ্যে থেকে অ্যাক্সেসযোগ্য এবং সরাসরি গ্লোবাল ভেরিয়েবল আপডেট করতে ব্যবহার করা যেতে পারে।
উপরের উদাহরণটি এরকম পুনঃলিখন করা যেতে পারে:
Example
<?php
$x = 5;
$y = 10;
function myTest() {
$GLOBALS['y'] = $GLOBALS['x'] + $GLOBALS['y'];
}
myTest();
echo $y; // outputs 15?>
$x = 5;
$y = 10;
function myTest() {
$GLOBALS['y'] = $GLOBALS['x'] + $GLOBALS['y'];
}
myTest();
echo $y; // outputs 15?>
PHP The static Keyword
Normally, when a function is completed/executed, all of its variables are deleted. However, sometimes we want a local variable NOT to be deleted. We need it for a further job.
To do this, use the
static
keyword when you first declare the variable:Example
<?php
function myTest() {
static $x = 0;
echo $x;
$x++;
}
myTest();
myTest();
myTest();
?>
function myTest() {
static $x = 0;
echo $x;
$x++;
}
myTest();
myTest();
myTest();
?>
Then, each time the function is called, that variable will still have the information it contained from the last time the function was called.
Note: The variable is still local to the function.