In this article, you have become familiar with the basic syntax in PHP. You may find a lot of confusing parts in some of the code examples above, but that's okay because you will understand it after reading a few more articles later. In the following article, I will show you the concept of variables because if you learn basic PHP , the use of variables is a lot.
The empty() function is a function that specializes in checking empty data in PHP
Both functions json_encode and serialize in PHP can be used to convert an object or array value to a string type. However, the conversion logic of these two functions is not the same. Also, with the same value used for conversion, the last received string has completely different formats.
The function serialize() encodes the variable value passed into a special string, the function returns the encoded string. Note: the function serialize() can be used with an array of data.
php random number In this tutorial, we will cover different techniques for generating random numbers and literal strings in PHP. Some of them will be encrypted, while others are just for general needs, like assigning a pseudo-random filename or generating a URL and suggesting a username.
Mamp is an acronym for (Macintosh, Apache, MySQL, and PHP) specific to the Mac operating system, later extended to Windows. Mamp is used to run code on localhost to help programmers to install each part of PHP, MYSQL, Apache ... It encapsulates everything, just start, reset and stop. If you've ever used XAMP, it's the same.
When designing the web, you often encounter special characters and do not know how to show it outside the menu. Today blogdev.net introduces some special characters in html.
Xampp is a Web server creator with built-in Apache, PHP, MySQL, FTP Server, Mail Server, phpMyAdmin, and tools like phpMyAdmin. Unlike Appserv, Xampp has a quite convenient management program, allowing to proactively turn on / off or restart server services at any time.
getcomposer In the past, we were often annoyed with the dozens of third-party libraries that needed to be managed, so it was difficult to update the messy installs. But that is now only the past, since the Composer was born has completely changed everything. What is Composer and how is it capable? This article will guide you, help you learn about the Composer and its benefits!
Remember that php header() must be called before sending anything to the output such as HTML tags, blank lines in a file, or PHP. This is a very common error when reading code with include or require, file access functions or functions, and there are spaces or blank lines in the output before header() is called. The same problem is encountered when using PHP / HTML files.
A PHP script can be used with an HTML form allowing users to upload files to the server. These files are first uploaded to a temporary directory, then moved to a destination by a PHP script.
PHP must be configured correctly in the php.ini file with details about how your system sends emails. Open the available php.ini in /etc/ directory and look for the section that starts with [mail function]. Windows users should make sure that there are 2 directives provided. The first one is called SMTP, which defines your email server address. The second is called sendmail_from, which defines your own email address.
Session In PHP Another way to make data accessible on different pages of an entire Website is to use a PHP Session. A session creates a file in a temporary directory on the server where the session variables are registered and their values are stored. This data will be available to all pages on the site during the visit to that site.
Cookies in PHP Cookies are text files stored on the client and they are kept for tracking purposes. PHP supports HTTP Cookies. There are 3 steps to identify the user who returns: Server-side script sends a set of cookies to the browser. For example name, age, ... The browser stores this information on the local machine for future use.
Functions in PHP are similar to other programming languages. A function is a piece of code that takes one or more input in a sample of parameters, and performs some processing and returns a value. In the previous chapter we were familiar with functions like fopen() and fread() ... They are built-in functions, but PHP also gives you the option to create your own function.