Skip to content

Instantly share code, notes, and snippets.

@violetyk
Created March 1, 2012 07:44
Show Gist options
  • Save violetyk/1948095 to your computer and use it in GitHub Desktop.
Save violetyk/1948095 to your computer and use it in GitHub Desktop.
[php]日時とか
<?php
// 文字列から
$timestamp = strtotime('2012-03-01 15:47:00');
// タイムスタンプから
$yyyymmdd = date("Y/m/d", $timestamp);
<?php
// 文字列から
$timestamp = strtotime('2012-03-01 15:47:00');
// タイムスタンプから
$yyyymmdd = date("Y/m/d", $timestamp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment