php - сторінка 3

php Use of hash functions in PHP
Use of hash functions in PHP
Data security is very important for any application. The unauthorized access of the data can damage the valuable data of the application. If the data ...
php Use of glob() function in PHP
Use of glob() function in PHP
glob() function is a built-in PHP function that is used to search the specific files or folders based on the pattern. It returns the file and folder n...
php Використання функції getenv () у PHP
Використання функції getenv () у PHP
Змінні середовища використовуються в PHP для налаштування програми та динамічного отримання різних типів даних із сервера. Повноваження бази даних, кл...
php Use of foreach loop in PHP
Use of foreach loop in PHP
Many types of loops are supported by PHP. foreach loop is one of them. This loop is mainly used to parse array and object variables. When the total nu...
php Use of PHP Global Variable
Use of PHP Global Variable
The variable is used to store any value temporarily in the script. Two types of variables are used in any programming language. These are local and gl...
php Retrieve the Full URL in PHP
Retrieve the Full URL in PHP
Two types of global variables can be used in PHP: the superglobal variable and the user-defined variable. $_SERVER is a superglobal array variable tha...
php Використання Heredoc у PHP
Використання Heredoc у PHP
Heredoc - це один із способів зберігати або друкувати блок тексту в PHP. Дані, що зберігаються у змінній heredoc, є більш читабельними та без помилок,...
php Use of fread() in PHP
Use of fread() in PHP
PHP has many built-in functions to read the content of any file. Some of them are fread(), readfile(), fgets(), fscanf(), file(), etc. Some functions ...
php Use of basename() in PHP
Use of basename() in PHP
The basename() function is a built-in function of PHP that retrieves the filename from a given path. It can be used to print only the name of the file...