PHP code example of mmnijas / strftime

1. Go to this page and download the library: Download mmnijas/strftime library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

mmnijas / strftime example snippets


  
    ction MmNijas\strftime;
  

  
    ction MmNijas\strftime;
  

  use function MmNijas\strftime;
  echo strftime('%A %e %B %Y %X', new \DateTime('2021-09-28 00:00:00'), 'fr_FR');

  \setlocale(LC_TIME, 'fr_FR.UTF-8');
  echo \strftime('%A %e %B %Y %X', strtotime('2021-09-28 00:00:00'));