Table of Contents
1. Confirm whether the passed parameter type is correct
2. Check whether the parameter is NULL
3. Check whether the parameter is Numerical string
Home Backend Development PHP Tutorial PHP Warning: date() expects parameter 2 to be long, string given solution

PHP Warning: date() expects parameter 2 to be long, string given solution

Jun 22, 2023 pm 08:03 PM
php Solution date

When developing using PHP programs, you often encounter some warning or error messages. Among them, one error message that may appear is: PHP Warning: date() expects parameter 2 to be long, string given.

This error message means: the second parameter of the function date() is expected to be a long integer (long), but what is actually passed to it is a string (string). So, how should we solve this problem? Below, we will introduce several possible solutions.

1. Confirm whether the passed parameter type is correct

When using the date() function, the second parameter is usually used to represent the timestamp. A timestamp is a way of representing time in integer form, usually obtained using the time() function. Therefore, we first need to confirm whether the second parameter is indeed a long integer timestamp when calling the date() function.

For example, in the following code example, the second parameter of the date() function is a string, so the above error message will appear.

$dateStr = "2022-01-01";
echo date("Y年m月d日",$dateStr);
//输出:PHP Warning: date() expects parameter 2 to be long, string given
Copy after login

If you need to convert the time in string form into a timestamp, you can use the strtotime() function to achieve this. For example:

$dateStr = "2022-01-01";
$date = strtotime($dateStr);
echo date("Y年m月d日",$date);
//输出:2022年01月01日
Copy after login

2. Check whether the parameter is NULL

If the second parameter is NULL when calling the date() function, the above error will occur. Therefore, when using the date() function, you should check whether the second parameter is NULL, for example:

$date = null;
echo date("Y年m月d日",$date);
//输出:PHP Warning: date() expects parameter 2 to be long, string given
Copy after login

You can change the above code to:

$date = time();
echo date("Y年m月d日",$date);
//输出:当前时间的年月日格式
Copy after login

3. Check whether the parameter is Numerical string

When using the date() function, if the second parameter is a string of integer type, the above error message will also appear. Therefore, when using the date() function, you should convert the parameters to numeric types, such as:

$dateStr = "1640995200";
$date = intval($dateStr);
echo date("Y年m月d日",$date);
//输出:2022年01月01日
Copy after login

Or, directly use the type conversion operator for conversion, such as:

$dateStr = "1640995200";
$date = (int)$dateStr;
echo date("Y年m月d日",$date);
//输出:2022年01月01日
Copy after login

In summary As mentioned above, when the error message PHP Warning: date() expects parameter 2 to be long, string given appears, we can solve this problem by checking the passed parameter type, determining whether the parameter is NULL, or performing type conversion. When this error occurs, don't panic, just choose the appropriate solution according to the specific situation.

The above is the detailed content of PHP Warning: date() expects parameter 2 to be long, string given solution. For more information, please follow other related articles on the PHP Chinese website!

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 Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

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

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1269
29
C# Tutorial
1249
24
Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Is the company's security software causing the application to fail to run? How to troubleshoot and solve it? Apr 19, 2025 pm 04:51 PM

Troubleshooting and solutions to the company's security software that causes some applications to not function properly. Many companies will deploy security software in order to ensure internal network security. ...

What should I do if the Redis cache of OAuth2Authorization object fails in Spring Boot? What should I do if the Redis cache of OAuth2Authorization object fails in Spring Boot? Apr 19, 2025 pm 08:03 PM

In SpringBoot, use Redis to cache OAuth2Authorization object. In SpringBoot application, use SpringSecurityOAuth2AuthorizationServer...

The Compatibility of IIS and PHP: A Deep Dive The Compatibility of IIS and PHP: A Deep Dive Apr 22, 2025 am 12:01 AM

IIS and PHP are compatible and are implemented through FastCGI. 1.IIS forwards the .php file request to the FastCGI module through the configuration file. 2. The FastCGI module starts the PHP process to process requests to improve performance and stability. 3. In actual applications, you need to pay attention to configuration details, error debugging and performance optimization.

What happens if session_start() is called multiple times? What happens if session_start() is called multiple times? Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

Tomcat starts Servlet error java.lang.IllegalStateException: How to troubleshoot servlet-api.jar loading problem? Tomcat starts Servlet error java.lang.IllegalStateException: How to troubleshoot servlet-api.jar loading problem? Apr 19, 2025 pm 04:36 PM

Tomcat starts Servlet error check When troubleshooting. When deploying Servlet application, Tomcat failed to start and reported java.lang.IllegalStateException:...

How to parse next-auth generated JWT token in Java and get information in it? How to parse next-auth generated JWT token in Java and get information in it? Apr 19, 2025 pm 08:21 PM

In processing next-auth generated JWT...

See all articles