What are the characteristics of PHP variables?
A variable is generally a name or symbol that stands for a value. Variables are
mainly used for storing values for example characters, character strings,
numeric values or memory addresses so that they can be used in any section of
the program.
Here are the following most important things to know about the variables in PHP
·
All variables in PHP are signified with a leading dollar sign ($).
·
The value of a variable is the value of its latest assignment.
·
Variables are assigned with the = operator, with the variable on the left-hand
side & the expression to be evaluated on the right.
·
Variables can, but do not need to be specified before the assignment.
·
Variables in PHP don’t have intrinsic types - a variable does not know in
advance whether it will be used to a string of characters or store a number.
·
Variables have default values when used before they are assigned.
·
PHP does a good job of automatically converting types from one to another when
needed.
·
PHP variables are basically of Perl-like.
Here are the following characteristics of PHP Variables:-
· Simple: PHP is a very easy language as it
contains all the data in the form of data member and member function(simple
variable & methods) and it is work on Object-Oriented Programming Concept
i.e., OOPS in PHP if code is incorrect it will give error output & tell
what is an error. Various programmers find it familiar.
·
PHP performs various system functions, that is., from files on a system it can
create, open, write, read, & close them.
·
PHP can handle forms, like gather data from files, save data to a file, through
the email you can send data, return data to the user.
·
You can also add, modify, delete, elements within your database through PHP.
·
Access cookies variables and set cookies.
·
Using PHP, you can restrict users to access a few pages of your website.
·
It can encrypt data.
· Security: PHP provides developers &
administrators with a flexible & efficient set of security safeguards.
These safeguards are divided into two frames of reference which are
system-level & application level.
System-Level Security Safeguards:
·
PHP can run in what is called as a safe mode which can limits users attempt to
exploit PHP implementation in many significant ways.
·
Limits can also be placed on maximum execution time & memory usage, which
if not controlled can have adverse effects on the server performance. Much as a
CGI-bin folder, the administrator can also place limitations on the locations
in which the user can execute & view PHP scripts & use PHP scripts as
well.
Application- Level Security safeguards:
·
Many trusted data encryption options are supported in PHP’s predefined function
set.
·
PHP is also compatible with several third-party applications, allowing for
simple integration with safe e-commerce technologies.
·
Another benefit is that PHP source code is not viewed able through the browser
as the script is completely parsed before it is sent back to requesting the user.

Comments
Post a Comment