Tagged articles
13 articles
Page 1 of 1
php Courses
php Courses
Sep 30, 2025 · Backend Development

Mastering PHP’s strtotime(): Convert Human Dates to UNIX Timestamps

Learn how PHP’s powerful strtotime() function transforms human‑readable date strings into UNIX timestamps, covering its syntax, common formats—including relative dates, absolute dates, time intervals, and special keywords—plus usage tips, limitations, and advanced parameters for flexible date handling.

BackendDate ParsingPHP
0 likes · 4 min read
Mastering PHP’s strtotime(): Convert Human Dates to UNIX Timestamps
php Courses
php Courses
Sep 10, 2025 · Backend Development

Master PHP’s strtotime(): Convert Human Dates to UNIX Timestamps

Learn how PHP’s strtotime() function transforms human‑readable date strings into UNIX timestamps, covering its syntax, parameters, and common formats such as relative dates, absolute dates, time intervals, and special keywords, while noting its parsing limits and extra options.

Date Parsingstrtotimeunix timestamp
0 likes · 4 min read
Master PHP’s strtotime(): Convert Human Dates to UNIX Timestamps
Python Crawling & Data Mining
Python Crawling & Data Mining
Oct 26, 2023 · Fundamentals

Clean Mixed Excel Date Formats in Pandas with Simple Code

This article walks through handling Excel columns that contain both compact (YYYYMMDD) and full timestamp (YYYY-MM-DD HH:MM:SS) date strings in Pandas, showing how to unify formats by removing hyphens, trimming, and converting them to proper datetime objects with concise code.

Date Parsingdata-processing
0 likes · 4 min read
Clean Mixed Excel Date Formats in Pandas with Simple Code
php Courses
php Courses
Oct 25, 2023 · Backend Development

Understanding and Using PHP's strtotime() Function

This article explains how PHP's strtotime() function converts human‑readable date and time strings into UNIX timestamps, covering its syntax, parameters, common usage examples, special keywords, limitations, and additional options for flexible date parsing.

Date ParsingPHPstrtotime
0 likes · 4 min read
Understanding and Using PHP's strtotime() Function
Java Architect Essentials
Java Architect Essentials
Jul 3, 2022 · Backend Development

Thread Safety Issues of SimpleDateFormat.parse() and format() Methods and Their Solutions

This article explains why SimpleDateFormat.parse() and SimpleDateFormat.format() are not thread‑safe in Java, analyzes the underlying causes involving shared Calendar objects, and presents three practical solutions—including per‑thread instances, synchronized blocks, and ThreadLocal usage—to eliminate concurrency bugs.

Date ParsingSimpleDateFormatSynchronization
0 likes · 11 min read
Thread Safety Issues of SimpleDateFormat.parse() and format() Methods and Their Solutions
FunTester
FunTester
Feb 27, 2020 · Backend Development

Parsing Dates Without a Year in Java: Fixing the Common Error

This article demonstrates a common mistake when parsing a date string without a year in Java, shows the resulting DateTimeParseException, and provides a correct solution using DateTimeFormatterBuilder to supply a default year, complete with code examples and expected output.

Backend DevelopmentDate ParsingDateTimeFormatter
0 likes · 4 min read
Parsing Dates Without a Year in Java: Fixing the Common Error
MaoDou Frontend Team
MaoDou Frontend Team
Jun 6, 2019 · Frontend Development

Safari Can’t Parse ‘2018‑12‑10 11:11:11’: Why and How to Fix It

This article explains why Safari on iOS throws “Invalid Date” for date strings like “2018‑12‑10 11:11:11”, demonstrates the incompatibility with Chrome, and provides a simple regex‑based solution to convert the format so the date parses correctly across browsers.

Date ParsingJavaScriptMobile Development
0 likes · 3 min read
Safari Can’t Parse ‘2018‑12‑10 11:11:11’: Why and How to Fix It
Weimob Technology Center
Weimob Technology Center
Oct 11, 2018 · Mobile Development

How to Solve Common WeChat Mini‑Program Issues: Dates, Navigation, Images, and More

This article compiles a series of practical solutions for frequent WeChat mini‑program challenges, covering iOS date parsing, live‑stream message throttling, storage sharing, navigation depth limits, floating‑point precision, QR‑code scene length, image preloading, and server‑client time synchronization, with code snippets and explanations.

Date ParsingImage PreloadingJavaScript
0 likes · 9 min read
How to Solve Common WeChat Mini‑Program Issues: Dates, Navigation, Images, and More