Existe uma função MySQL
unix_timestamp
. Na sua consulta SQL, em vez de selecionar diretamente a coluna Datetime ou Timestamp, faça o seguinte:SELECT unix_timestamp(MyDatetimeColumn) FROM MyTable
Como alternativa, se você já tiver a string, poderá usar a função PHP
strtotime()
.