Can anyone help me understand this code? Thanks
$age = empty($_POST['age'])?1:trim($_POST['age']);
<code>$taste = empty($_POST['taste'])?1:trim($_POST['taste']); $drink = empty($_POST['drink'])?0:trim($_POST['drink']); $drink_quantity = empty($_POST['drink_quantity'])?0:trim($_POST['drink_quantity']); $potation = empty($_POST['potation'])?0:trim($_POST['potation']); $coffee = empty($_POST['coffee'])?0:trim($_POST['coffee']); $smoke = empty($_POST['smoke'])?0:trim($_POST['smoke']); $medicine_type = empty($_POST['medicine_type'])?0:trim($_POST['medicine_type']); $movement = empty($_POST['movement'])?0:trim($_POST['movement']); $movement_name = empty($_POST['movement_name'])?'':trim($_POST['movement_name']); $work = empty($_POST['work'])?0:trim($_POST['work']); $pressure = empty($_POST['pressure'])?0:trim($_POST['pressure']); $tired = empty($_POST['tired'])?0:trim($_POST['tired']); $cold = empty($_POST['cold'])?0:trim($_POST['cold']); $hands = empty($_POST['hands'])?0:trim($_POST['hands']); $pregnant = empty($_POST['pregnant'])?0:trim($_POST['pregnant']); $lactation = empty($_POST['lactation'])?0:trim($_POST['lactation']); $edema = empty($_POST['edema'])?0:trim($_POST['edema']); $edema_po = empty($_POST['edema_po']) ? 0 : trim($_POST['edema_po']); $discomfort = empty($_POST['discomfort']) ? 0 : trim($_POST['discomfort']); $makeup_name = empty($_POST['makeup_name']) ? '' : trim($_POST['makeup_name']); $shaping_name = empty($_POST['shaping_name']) ? 0 : trim($_POST['shaping_name']); $shaping = empty($_POST['shaping']) ? 0 : trim($_POST['shaping']); $skin = empty($_POST['skin']) ? 0 : trim($_POST['skin']); $skin_pro = empty($_POST['skin_pro']) ? array() : $_POST['skin_pro']; $skin_pro = implode(',',$skin_pro); $body_pro = empty($_POST['body_pro']) ? array() : $_POST['body_pro']; $body_pro = implode(',', $body_pro); $course = empty($_POST['course']) ? 0 : trim($_POST['course']); $nursing_period = empty($_POST['nursing_period']) ? 0 : trim($_POST['nursing_period']); $nursing_inter = empty($_POST['nursing_inter']) ? 0 : trim($_POST['nursing_inter']); $treatment_cost = empty($_POST['treatment_cost']) ? 0 : trim($_POST['treatment_cost']); $homep_roducts = empty($_POST['homep_roducts']) ? 0 : trim($_POST['homep_roducts']);</code>
Reply content:
$age = empty($_POST['age'])?1:trim($_POST['age']);
<code>$taste = empty($_POST['taste'])?1:trim($_POST['taste']); $drink = empty($_POST['drink'])?0:trim($_POST['drink']); $drink_quantity = empty($_POST['drink_quantity'])?0:trim($_POST['drink_quantity']); $potation = empty($_POST['potation'])?0:trim($_POST['potation']); $coffee = empty($_POST['coffee'])?0:trim($_POST['coffee']); $smoke = empty($_POST['smoke'])?0:trim($_POST['smoke']); $medicine_type = empty($_POST['medicine_type'])?0:trim($_POST['medicine_type']); $movement = empty($_POST['movement'])?0:trim($_POST['movement']); $movement_name = empty($_POST['movement_name'])?'':trim($_POST['movement_name']); $work = empty($_POST['work'])?0:trim($_POST['work']); $pressure = empty($_POST['pressure'])?0:trim($_POST['pressure']); $tired = empty($_POST['tired'])?0:trim($_POST['tired']); $cold = empty($_POST['cold'])?0:trim($_POST['cold']); $hands = empty($_POST['hands'])?0:trim($_POST['hands']); $pregnant = empty($_POST['pregnant'])?0:trim($_POST['pregnant']); $lactation = empty($_POST['lactation'])?0:trim($_POST['lactation']); $edema = empty($_POST['edema'])?0:trim($_POST['edema']); $edema_po = empty($_POST['edema_po']) ? 0 : trim($_POST['edema_po']); $discomfort = empty($_POST['discomfort']) ? 0 : trim($_POST['discomfort']); $makeup_name = empty($_POST['makeup_name']) ? '' : trim($_POST['makeup_name']); $shaping_name = empty($_POST['shaping_name']) ? 0 : trim($_POST['shaping_name']); $shaping = empty($_POST['shaping']) ? 0 : trim($_POST['shaping']); $skin = empty($_POST['skin']) ? 0 : trim($_POST['skin']); $skin_pro = empty($_POST['skin_pro']) ? array() : $_POST['skin_pro']; $skin_pro = implode(',',$skin_pro); $body_pro = empty($_POST['body_pro']) ? array() : $_POST['body_pro']; $body_pro = implode(',', $body_pro); $course = empty($_POST['course']) ? 0 : trim($_POST['course']); $nursing_period = empty($_POST['nursing_period']) ? 0 : trim($_POST['nursing_period']); $nursing_inter = empty($_POST['nursing_inter']) ? 0 : trim($_POST['nursing_inter']); $treatment_cost = empty($_POST['treatment_cost']) ? 0 : trim($_POST['treatment_cost']); $homep_roducts = empty($_POST['homep_roducts']) ? 0 : trim($_POST['homep_roducts']);</code>
This is a problematic piece of code. . .
Replace empty() with isset()...
Otherwise there will be notice...
Use the ternary operator, which is ? : ;
in the statement, and use empty to determine whether it is empty
Check a bunch of variables as empty, and remove spaces if they are not empty
? : You should learn about this operator
This code is to get data from the form data of the post
It mainly performs null value verification. The first line of code means that if the taste in the _POST array is empty, the $taste variable is assigned 1, otherwise it is the form data.
Other codes are similar What this also means is that implode divides and cuts the passed string into arrays
A format similar to xx?A:B is called the ternary operator
$v=empty(xxxx)?A:B
$v is a variable
= sign is the assignment symbol
empty(xxxx)? which is equivalent to a judgment. empty is a function that determines whether it is empty
If xxxx is empty, the value of $V is assigned to A
If xxxx is not empty, the value of $V is assigned to B
Disagree with the highly voted answer for the following reasons:

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
