Table of Contents
Reply content:
Home Backend Development PHP Tutorial How does Carbon determine what day of the week it is?

How does Carbon determine what day of the week it is?

Jul 06, 2016 pm 01:51 PM
carbon laravel php

Using Carbon in Laravel, how to determine what day of the week today is?

Also,

<code>如何将Carbon::now()得到的结果裁剪成类似这样的格式:20160628;
如何将20160628这样的格式转成Carbon::now()-&gt;dayOfYear.
</code>
Copy after login
Copy after login

If there is a Chinese document or tutorial on carbon, please give an address. There is too little time and it is too slow to read the official document.

Thank you!

Reply content:

Using Carbon in Laravel, how to determine what day of the week today is?

Also,

<code>如何将Carbon::now()得到的结果裁剪成类似这样的格式:20160628;
如何将20160628这样的格式转成Carbon::now()-&gt;dayOfYear.
</code>
Copy after login
Copy after login

If there is a Chinese document or tutorial on carbon, please give an address. There is too little time and it is too slow to read the official document.

Thank you!

Using PHP native method.

carbon is an external dependency package, you can take a look at this http://carbon.nesbot.com/docs/

<code>$dt = Carbon::now()-&gt;dayOfWeek;
// $dt = 0 ~ 6</code>
Copy after login

Note: Sunday returns 0

<code>echo (new Carbon('20160628'))-&gt;dayOfYear;</code>
Copy after login

Carbon is very flexible. It is recommended to look at the source code. There are many, many methods

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 Article Tags

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)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

CakePHP Date and Time

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

CakePHP Project Configuration

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

CakePHP File upload

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

CakePHP Routing

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

Discuss CakePHP

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP Quick Guide

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

How To Set Up Visual Studio Code (VS Code) for PHP Development

See all articles