Skip to content

Instantly share code, notes, and snippets.

View phudinsky's full-sized avatar

Pavel Hudinsky phudinsky

View GitHub Profile
@phudinsky
phudinsky / DotNetDateTimeFormatConverter.php
Last active May 17, 2017 09:44
Very simple format converter from .net datetime format to php datetime format
<?php
declare(strict_types=1);
class DotNetDateTimeFormatConverter
{
/**
* @param string $dotNetDateTimeFormat
* @return string
*/
public function toPhpDateTimeFormat(string $dotNetDateTimeFormat): string