PHP basic study notes (3)
Variables:
The meaning of a variable: It is a code used to represent a piece of data - a name defined by ourselves.
Definition of variables: var v1; var v2 = 2; var v3, v4, v5; var v6, v7=7, v8, v9="abc";
Usage of variables:
Assignment: v1 = 1; v1 = 1+2+3; v1 = v2 + “abc”; v1 = v1 + 5; v1 = v1 + v1;
Value: m1 = v1; // Get the value of v1 and assign it to m1
m2 = v1 + 5;
alert( v1); T document.write (v1); // take the V1 value and hand it over to the document.write to "output"V Alert ("v1 =" + v1); // The value of V1 is obtained and connected to the string "v1 =", and then the result is alert.
T document.write ("v1 =" + v1);Data type:
Basic type:
Boolean type: boolean; This type has only two values available: true, false
S String type: string; you can use single quotes or dual quotes, the same meaning;
Number type: number
Compound type:
Array: Array,
Object: Object
Special type:
类 NULL: Empty type -can give a variable a clear assignment to "null". This is the empty value and empty type, just to indicate a "meaning": the variable does not give an effective value.undefined: Undefined: This type usually corresponds to the state of "no value has been given at all".
Arithmetic operators:+ - * / %
Note: :
1. Division (/) is natural division in mathematics, not the meaning of division in C language.
2, ++ and -- are called unary operators, which only operate on one variable
3, But ++ and – can be used in expressions (such as assignment statements), which is like doing two things at the same time: self-increment (or self-decrement) and the calculation of the expression itself. At this time, they are placed in the variable Front and back have different meanings.
a) var i = 1; var s1 = i++; var s1 = i++; //The result is: s1 is 1, i is 2
b) var i = 1; var s2 = ++i; //The result is: s2 is 2, i is 2
Comparison operators: > >= < <= == != === !==
Comparison operators are used to compare the size of data, usually numbers. Notable among them are:
== is called "fuzzy equality", that is, if the content of the data or the converted content is equal, it is considered equal.
=== is called “strict equality”, it is considered equal only when the type of data and the content of the data are equal.
角 -From a computer perspective, one data has two aspects: data type and data value (data content)Logical operators: only used to operate on bool values.
Logical AND ( && ): The result is true only when both data are true
Logical OR ( || ): As long as one of the two data is true, the result is true
Logical NOT ( ! ): Get the "opposite value" of a bool value
String operators:
There is only one concatenation operator ( + ): meaning "connect two strings"
Distinguish the addition of arithmetic operators ( + ):
As long as one of the two data with the plus sign ( + ) is a string, it will be operated according to the "connection" meaning of the string. If the other is not a string, it will be automatically converted to a string and then connected. .
Bitwise operators:
Bit operators are only performed on the binary form of numbers.
var v1 = 5; //This is decimal, the binary system is actually: 101, inside the computer it is actually similar to this: 00000101
var v2 = 6; // This is decimal, the binary system is actually: 110, inside the computer it is actually like this: 00000110
Bitwise AND:
Symbol: &
Meaning: Perform an "AND operation" on the corresponding bits of two binary numbers, and the result is still the value represented by the binary number composed of the results of these bit operations.
Explanation: The rules for “AND operation” of binary numbers are:
1 & 1 è 1
1 & 0 è 0
0 & 0 è 0
Example:
var v1 = 5, v2 = 6, the operation diagram is:
0 |
0 |
0 |
0 |
0 |
1 |
0 |
1 |
| v2=6|||||||||||||||||||||||||||||||||||
0 |
0 |
0 |
0 |
0 |
1 |
1 |
0 |
| v1 & v2|||||||||||||||||||||||||||||||||||
0 |
0 |
0 |
0 |
0 |
1 |
0 |
0 |
var v3 = v1 & v2 = 00000100(2) = 4(10) Bitwise OR: symbol: | Meaning: Perform an "OR operation" on the corresponding bits of two binary numbers, and the result is the value represented by the binary number composed of the results of these bit operations. Explanation: The rule for performing "OR operation" on binary numbers is: 1 1
Bitwise negation: Symbol: ~ //This is a "unary operator" Meaning: Perform "not operation" on the numbers in the corresponding bits of a binary number, and the result is the value represented by these binary numbers. Explanation: The rules for "not operation" with binary numbers are:
Bitwise left shift operation: Symbol: << 个 Meaning: Move the specified bit number on the left to each bit of a binary number, and the "take" out on the left will not matter (not calculated), fill in "0" on the empty position on the right, The result is the value represented by the binary number.Example: var v1 = 5; var v2 = 5 << 2; The operation diagram is:
v1=5
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
![]() Hot AI Tools![]() Undresser.AI UndressAI-powered app for creating realistic nude photos ![]() AI Clothes RemoverOnline AI tool for removing clothes from photos. ![]() Undress AI ToolUndress images for free ![]() Clothoff.ioAI clothes remover ![]() AI Hentai GeneratorGenerate AI Hentai for free. ![]() Hot Article
Repo: How To Revive Teammates
1 months ago
By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago
By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago
By 尊渡假赌尊渡假赌尊渡假赌
How Long Does It Take To Beat Split Fiction?
4 weeks ago
By DDD
R.E.P.O. Save File Location: Where Is It & How to Protect It?
4 weeks ago
By DDD
![]() Hot Tools![]() Notepad++7.3.1Easy-to-use and free code editor ![]() SublimeText3 Chinese versionChinese version, very easy to use ![]() Zend Studio 13.0.1Powerful PHP integrated development environment ![]() Dreamweaver CS6Visual web development tools ![]() SublimeText3 Mac versionGod-level code editing software (SublimeText3) ![]() Hot Topics![]() The message "Your organization has asked you to change your PIN" will appear on the login screen. This happens when the PIN expiration limit is reached on a computer using organization-based account settings, where they have control over personal devices. However, if you set up Windows using a personal account, the error message should ideally not appear. Although this is not always the case. Most users who encounter errors report using their personal accounts. Why does my organization ask me to change my PIN on Windows 11? It's possible that your account is associated with an organization, and your primary approach should be to verify this. Contacting your domain administrator can help! Additionally, misconfigured local policy settings or incorrect registry keys can cause errors. Right now ![]() Windows 11 brings fresh and elegant design to the forefront; the modern interface allows you to personalize and change the finest details, such as window borders. In this guide, we'll discuss step-by-step instructions to help you create an environment that reflects your style in the Windows operating system. How to change window border settings? Press + to open the Settings app. WindowsI go to Personalization and click Color Settings. Color Change Window Borders Settings Window 11" Width="643" Height="500" > Find the Show accent color on title bar and window borders option, and toggle the switch next to it. To display accent colors on the Start menu and taskbar To display the theme color on the Start menu and taskbar, turn on Show theme on the Start menu and taskbar ![]() By default, the title bar color on Windows 11 depends on the dark/light theme you choose. However, you can change it to any color you want. In this guide, we'll discuss step-by-step instructions for three ways to change it and personalize your desktop experience to make it visually appealing. Is it possible to change the title bar color of active and inactive windows? Yes, you can change the title bar color of active windows using the Settings app, or you can change the title bar color of inactive windows using Registry Editor. To learn these steps, go to the next section. How to change title bar color in Windows 11? 1. Using the Settings app press + to open the settings window. WindowsI go to "Personalization" and then ![]() Do you see "A problem occurred" along with the "OOBELANGUAGE" statement on the Windows Installer page? The installation of Windows sometimes stops due to such errors. OOBE means out-of-the-box experience. As the error message indicates, this is an issue related to OOBE language selection. There is nothing to worry about, you can solve this problem with nifty registry editing from the OOBE screen itself. Quick Fix – 1. Click the “Retry” button at the bottom of the OOBE app. This will continue the process without further hiccups. 2. Use the power button to force shut down the system. After the system restarts, OOBE should continue. 3. Disconnect the system from the Internet. Complete all aspects of OOBE in offline mode ![]() Taskbar thumbnails can be fun, but they can also be distracting or annoying. Considering how often you hover over this area, you may have inadvertently closed important windows a few times. Another disadvantage is that it uses more system resources, so if you've been looking for a way to be more resource efficient, we'll show you how to disable it. However, if your hardware specs can handle it and you like the preview, you can enable it. How to enable taskbar thumbnail preview in Windows 11? 1. Using the Settings app tap the key and click Settings. Windows click System and select About. Click Advanced system settings. Navigate to the Advanced tab and select Settings under Performance. Select "Visual Effects" ![]() We all have different preferences when it comes to display scaling on Windows 11. Some people like big icons, some like small icons. However, we all agree that having the right scaling is important. Poor font scaling or over-scaling of images can be a real productivity killer when working, so you need to know how to customize it to get the most out of your system's capabilities. Advantages of Custom Zoom: This is a useful feature for people who have difficulty reading text on the screen. It helps you see more on the screen at one time. You can create custom extension profiles that apply only to certain monitors and applications. Can help improve the performance of low-end hardware. It gives you more control over what's on your screen. How to use Windows 11 ![]() Screen brightness is an integral part of using modern computing devices, especially when you look at the screen for long periods of time. It helps you reduce eye strain, improve legibility, and view content easily and efficiently. However, depending on your settings, it can sometimes be difficult to manage brightness, especially on Windows 11 with the new UI changes. If you're having trouble adjusting brightness, here are all the ways to manage brightness on Windows 11. How to Change Brightness on Windows 11 [10 Ways Explained] Single monitor users can use the following methods to adjust brightness on Windows 11. This includes desktop systems using a single monitor as well as laptops. let's start. Method 1: Use the Action Center The Action Center is accessible ![]() In iOS 17, Apple introduced several new privacy and security features to its mobile operating system, one of which is the ability to require two-step authentication for private browsing tabs in Safari. Here's how it works and how to turn it off. On an iPhone or iPad running iOS 17 or iPadOS 17, Apple's browser now requires Face ID/Touch ID authentication or a passcode if you have any Private Browsing tab open in Safari and then exit the session or app to access them again. In other words, if someone gets their hands on your iPhone or iPad while it's unlocked, they still won't be able to view your privacy without knowing your passcode ![]() |