BM2ilabs
BM2ilabs

Reputation: 532

Carbon Laravel textual month could not be found Unexpected data found

I am having issue with this date formatting Sunday 15th March 04:11 PM trying to use :

Carbon::createFromIsoFormat('dddd Do MMMM hh:mm A')

But i am getting this exception :

Error: A textual month could not be found Unexpected data found.

I am not sure what i am doing wrong.

Upvotes: 0

Views: 335

Answers (1)

N69S
N69S

Reputation: 17206

If you need to use that specific format, using it like this would work

Carbon::rawCreateFromFormat('l jS F h:i A','Sunday 15th March 04:11 PM')

For the signification of the format, refer to PHP DATE

Upvotes: 1

Related Questions