Когда я хочу получить дату столбца, он показывает мне это . вот мой код для объекта, который содержит атрибут dateTime:
/**
* @ORM\Column(type="datetime")
*/
private $dateEcheance;
public function getDateEcheance(): ?\DateTimeInterface
{
$this->dateEcheance->format('d/m/Y');
return $this->dateEcheance;
}
public function setDateEcheance(\DateTimeInterface $dateEcheance): self
{
date_default_timezone_set('Africa/Tunis');
$this->dateEcheance = $dateEcheance;
return $this;
}
, и это мой API:
/**
* @Route("/api/getContract", name="getContract", methods={"GET"})
*/
public function getContract(ContratRepository $contratRepo)
{
$contrat= $contratRepo->findAll();
$encoders = [new JsonEncoder()];
$normalizers =[new ObjectNormalizer()];
$serializer =new Serializer($normalizers, $encoders);
$jsonContent =$serializer->serialize($contrat, 'json', ['circular_reference_handler' => function($object){
return $object->getId();
}]);
$response = new Response($jsonContent);
$response->headers->set('Content-Type', 'application/json');
$response->headers->set('Access-Control-Allow-Origin', '*');
return $response;
}
любая помощь будет приложена :)