AI Verified

Name

Format date

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

Sławomir-Codevault

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

30/11/2023

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Format date

 
                    
1function formatuj_date($data) {
2 // Sprawdź, czy data jest pusta
3 if (empty($data)) {
4 return 'Brak daty';
5 }
6 
7 // Utwórz obiekt DateTime
8 $data_obj = new DateTime($data);
9 
10 // Sformatuj datę do postaci '12 Oct 2023'
11 $formatted_date = $data_obj->format('j M Y');
12 
13 // Tablica z angielskimi nazwami miesięcy i ich polskimi odpowiednikami
14 $miesiace = [
15 'Jan' => 'sty',
16 'Feb' => 'lut',
17 'Mar' => 'mar',
18 'Apr' => 'kwi',
19 'May' => 'maj',
20 'Jun' => 'cze',
21 'Jul' => 'lip',
22 'Aug' => 'sie',
23 'Sep' => 'wrz',
24 'Oct' => 'paź',
25 'Nov' => 'lis',
26 'Dec' => 'gru',
27 ];
28 
29 // Zamień angielskie nazwy miesięcy na polskie
30 foreach ($miesiace as $eng => $pl) {
31 $formatted_date = str_replace($eng, $pl, $formatted_date);
32 }
33 
34 return $formatted_date;
35}

0

Related Snippets

Please see some snippets below related to this snippet..

General

AI Verified

0

Image in RSS Feed from Post Content

Added: 1 year ago

Last Updated: 1 year ago

You can set first image from post content to show in RSS feeds

General

Unverified

0

GA 4 - Header

Added: 11 months ago

Last Updated: 11 months ago

General

AI Verified

0

FacetWp - Default featured Image

Added: 6 months ago

Last Updated: 6 months ago

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

General

AI Verified

0

Format date

Added: 7 months ago

Last Updated: 7 months ago