{"id":176,"date":"2013-03-11T12:39:35","date_gmt":"2013-03-11T11:39:35","guid":{"rendered":"http:\/\/sam-soul.fr\/Info\/?p=176"},"modified":"2013-03-11T12:39:35","modified_gmt":"2013-03-11T11:39:35","slug":"epoch","status":"publish","type":"post","link":"http:\/\/les-fougs.com\/wordpress\/2013\/03\/11\/epoch\/","title":{"rendered":"Epoch"},"content":{"rendered":"<p><span style=\"font-size: small;\"><a href=\"http:\/\/www.epochconverter.com\/\" target=\"_blank\">http:\/\/www.epochconverter.com\/<\/a><\/span><\/p>\n<h2><strong><span style=\"font-size: small;\">What is epoch time?<\/span><\/strong><\/h2>\n<p><span style=\"font-size: small;\">The <strong>Unix epoch<\/strong> (or <strong>Unix time<\/strong> or <strong>POSIX time<\/strong> or <strong>Unix timestamp<\/strong>) is the number of seconds that have elapsed since January 1, 1970 (midnight UTC\/GMT), not counting leap seconds (in ISO 8601: 1970-01-01T00:00:00Z). Literally speaking the epoch is Unix time 0 (midnight 1\/1\/1970), but &lsquo;epoch&rsquo; is often used as a synonym for &lsquo;Unix time&rsquo;. Many Unix systems store epoch dates as a signed 32-bit integer, which might cause problems on January 19, 2038 (known as the Year 2038 problem or Y2038).<\/span><\/p>\n<table border=\"0\">\n<tbody>\n<tr>\n<td><span style=\"font-size: small;\"><strong>Human readable time<\/strong><\/span><\/td>\n<td align=\"right\"><span style=\"font-size: small;\"><strong>Seconds<\/strong><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">1 hour<\/span><\/td>\n<td align=\"right\"><span style=\"font-size: small;\">3600 seconds<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">1 day<\/span><\/td>\n<td align=\"right\"><span style=\"font-size: small;\">86400 seconds<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">1 week<\/span><\/td>\n<td align=\"right\"><span style=\"font-size: small;\">604800 seconds<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">1 month (30.44 days)<\/span><\/td>\n<td align=\"right\"><span style=\"font-size: small;\">2629743 seconds<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">1 year (365.24 days)<\/span><\/td>\n<td align=\"right\"><span style=\"font-size: small;\">31556926 seconds<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2><span style=\"font-size: small;\"><strong>How to get the current epoch time in &#8230;<\/strong><\/span><\/h2>\n<table border=\"0\">\n<tbody>\n<tr>\n<td><span style=\"font-size: small;\">PHP<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>time()<\/code> <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-php.php\">more &#8230;<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Python<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>import time<\/code> first, then <code>time.time()<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Ruby<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Time.now<\/code> (or <code>Time.new<\/code>). To display the epoch: <code>Time.now.to_i<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Perl<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>time<\/code> <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-perl.php\">more &#8230;<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Java<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>long epoch = System.currentTimeMillis()\/1000;<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Microsoft .NET C#<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>epoch = (DateTime.Now.ToUniversalTime().Ticks - 621355968000000000) \/ 10000000;<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Objective-C<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>[[NSDate date] timeIntervalSince1970];<\/code> (returns double) or <code>NSString *currentTimestamp = [NSString stringWithFormat:@\"%f\", [[NSDate date] timeIntervalSince1970]];<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">VBScript\/ASP<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>DateDiff(\"s\", \"01\/01\/1970 00:00:00\", Now())<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td title=\"Embarcadero Delphi\"><span style=\"font-size: small;\">Delphi<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Epoch := DateTimetoUnix(Now);<\/code> Tested in Delphi 2010.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">R<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>as.numeric(Sys.time())<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Erlang<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>calendar:datetime_to_gregorian_seconds(calendar:now_to_universal_time( now()))-719528*24*3600.<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">MySQL<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT unix_timestamp(now())<\/code> <a href=\"http:\/\/www.epochconverter.com\/programming\/mysql-from-unixtime.php\">more &#8230;<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">PostgreSQL<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT extract(epoch FROM now());<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Oracle PL\/SQL<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT (SYSDATE - TO_DATE('01\/01\/1970 00:00:00', 'MM-DD-YYYY HH24:MI:SS')) *<br \/>\n24 * 60 * 60 FROM DUAL<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">SQL Server<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT DATEDIFF(s, '1970-01-01 00:00:00', GETUTCDATE())<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">JavaScript<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Math.round(new Date().getTime()\/1000.0)<\/code> getTime() returns time in milliseconds.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Tcl\/Tk<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>clock seconds<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Unix\/Linux Shell<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>date +%s<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">PowerShell<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Get-Date -UFormat \"%s\"<\/code> Produces: 1279152364.63599<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Other OS&rsquo;s<\/span><\/td>\n<td><span style=\"font-size: small;\">Command line: <code>perl -e \"print time\"<\/code> (If Perl is installed on your system)<\/span><\/p>\n<p>&nbsp;<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2><strong><span style=\"font-size: small;\">Convert from human readable date to epoch<\/span><\/strong><\/h2>\n<table border=\"0\">\n<tbody>\n<tr>\n<td><span style=\"font-size: small;\">PHP<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>strtotime(\"15 November 2012\")<\/code> (converts most English date texts) or:<br \/>\n<code>date_create('01\/15\/2010')-&gt;format('U')<\/code> (PHP5 DateTime class) <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-php.php#date2epoch\">more &#8230;<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Python<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>import time<\/code> first, then <code>int(time.mktime(time.strptime('2000-01-01 12:34:00', '%Y-%m-%d %H:%M:%S'))) - time.timezone<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Ruby<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Time.local(<em>year<\/em>, <em>month<\/em>, <em>day<\/em>, <em>hour<\/em>, <em>minute<\/em>, <em>second<\/em>, <em>usec<\/em> )<\/code> (or <code>Time.gm<\/code> for GMT\/UTC input). To display add <code>.to_i<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Perl<\/span><\/td>\n<td><span style=\"font-size: small;\">Use the <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-perl.php\">Perl Epoch routines<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Java<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>long epoch = new java.text.SimpleDateFormat(\"MM\/dd\/yyyy HH:mm:ss\").parse(\"01\/01\/1970 01:00:00\").getTime() \/ 1000;<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">VBScript\/ASP<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>DateDiff(\"s\", \"01\/01\/1970 00:00:00\", <em>time field<\/em>)<\/code> <a href=\"http:\/\/www.epochconverter.com\/programming\/#asp\"><img decoding=\"async\" alt=\"More info\" src=\"http:\/\/www.epochconverter.com\/img\/icons\/info.png\" width=\"16\" height=\"16\" border=\"0\" \/><\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td title=\"Embarcadero Delphi\"><span style=\"font-size: small;\">Delphi<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Epoch := DateTimeToUnix(StrToDateTime(myString));<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">C<\/span><\/td>\n<td><span style=\"font-size: small;\">Use the <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-c.php\">C Epoch Converter routines<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">R<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>as.numeric(as.POSIXct(\"MM\/dd\/yyyy HH:mm:ss\", origin=\"1970-01-01\"))<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">MySQL<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT unix_timestamp(<em>time<\/em>)<\/code> Time format: YYYY-MM-DD HH:MM:SS or YYMMDD or YYYYMMDD<br \/>\n<a href=\"http:\/\/www.epochconverter.com\/programming\/mysql-from-unixtime.php\">More on using Epoch timestamps with MySQL<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">PostgreSQL<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT extract(epoch FROM date('2000-01-01 12:34'));<\/code><br \/>\nWith timestamp: <code>SELECT EXTRACT(EPOCH FROM TIMESTAMP WITH TIME ZONE '2001-02-16 20:38:40-08');<\/code><br \/>\nWith interval: <code>SELECT EXTRACT(EPOCH FROM INTERVAL '5 days 3 hours');<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">SQL Server<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT DATEDIFF(s, '1970-01-01 00:00:00', <em>time field<\/em>)<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">JavaScript<\/span><\/td>\n<td><span style=\"font-size: small;\">Use the <a href=\"http:\/\/www.epochconverter.com\/programming\/#javascript\">JavaScript Date object<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Unix\/Linux Shell<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>date +%s -d\"Jan 1, 1980 00:00:01\"<\/code> Replace &lsquo;-d&rsquo; with &lsquo;-ud&rsquo; to input in GMT\/UTC time.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<h2><strong><span style=\"font-size: small;\">Convert from epoch to human readable date<\/span><\/strong><\/h2>\n<table border=\"0\">\n<tbody>\n<tr>\n<td><span style=\"font-size: small;\">PHP<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>date(<em>output format<\/em>, <em>epoch<\/em>);<\/code> Output format example: &lsquo;r&rsquo; = RFC 2822 date <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-php.php#epoch2date\">more &#8230;<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Python<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>import time<\/code> first, then <code>time.strftime(\"%a, %d %b %Y %H:%M:%S +0000\", time.localtime(<em>epoch<\/em>))<\/code> Replace time.localtime with time.gmtime for GMT time. <a href=\"http:\/\/docs.python.org\/lib\/module-time.html\" rel=\"nofollow\"><img decoding=\"async\" alt=\"More info\" src=\"http:\/\/www.epochconverter.com\/img\/icons\/info.png\" width=\"16\" height=\"16\" border=\"0\" \/><\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Ruby<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Time.at(<em>epoch<\/em>)<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Perl<\/span><\/td>\n<td><span style=\"font-size: small;\">Use the <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-perl.php\">Perl Epoch routines<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Java<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>String date = new java.text.SimpleDateFormat(\"MM\/dd\/yyyy HH:mm:ss\").format(new java.util.Date (<em>epoch<\/em>*1000));<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">VBScript\/ASP<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>DateAdd(\"s\", <em>epoch<\/em>, \"01\/01\/1970 00:00:00\")<\/code> <a href=\"http:\/\/www.epochconverter.com\/programming\/#asp\"><img decoding=\"async\" alt=\"More info\" src=\"http:\/\/www.epochconverter.com\/img\/icons\/info.png\" width=\"16\" height=\"16\" border=\"0\" \/><\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td title=\"Embarcadero Delphi\"><span style=\"font-size: small;\">Delphi<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>myString := DateTimeToStr(UnixToDateTime(Epoch));<\/code> Where Epoch is a signed integer.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">C<\/span><\/td>\n<td><span style=\"font-size: small;\">Use the <a href=\"http:\/\/www.epochconverter.com\/programming\/functions-c.php\">C Epoch Converter routines<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Objective-C<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>NSDate * myDate = [NSDate dateWithTimeIntervalSince1970:<em>epoch<\/em>]; NSLog(@\"%@\", date);<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">R<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>as.POSIXct(epoch, origin=\"1970-01-01\", tz=\"GMT\")<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">MySQL<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>FROM_UNIXTIME(<em>epoch<\/em>, <em>optional output format<\/em>)<\/code> Default output format is YYY-MM-DD HH:MM:SS. If you need support for negative timestamps: <code>DATE_FORMAT(DATE_ADD(FROM_UNIXTIME(0), interval -315619200 second),\"%Y-%m-%d\")<\/code> (replace -315619200 with epoch) <a href=\"http:\/\/www.epochconverter.com\/programming\/mysql-from-unixtime.php\">more &#8230;<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">PostgreSQL<\/span><\/td>\n<td><span style=\"font-size: small;\">PostgreSQL version 8.1 and higher: <code>SELECT to_timestamp(<em>epoch<\/em>);<\/code> <a href=\"http:\/\/www.postgresql.org\/docs\/8.1\/static\/functions-formatting.html\" rel=\"nofollow\"><img decoding=\"async\" alt=\"More info\" src=\"http:\/\/www.epochconverter.com\/img\/icons\/info.png\" width=\"16\" height=\"16\" border=\"0\" \/><\/a> Older versions: <code>SELECT TIMESTAMP WITH TIME ZONE 'epoch' + <em>epoch<\/em> * INTERVAL '1 second';<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Oracle PL\/SQL<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>SELECT to_date('01-JAN-1970','dd-mon-yyyy')+(1326357743\/60\/60\/24) from dual<\/code><br \/>\nReplace 1326357743 with epoch.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">SQL Server<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>DATEADD(s, <em>epoch<\/em>, '1970-01-01 00:00:00')<\/code><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Microsoft Excel<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>=(A1 \/ 86400) + 25569<\/code> Format the result cell for date\/time, the result will be in GMT time (A1 is the cell with the epoch number). For other time zones: =((A1 +\/- <a href=\"http:\/\/www.epochconverter.com\/epoch\/timezones.php\">time zone adjustment<\/a>) \/ 86400) + 25569.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Crystal Reports<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>DateAdd(\"s\", {EpochTimeStampField}-14400, #1\/1\/1970 00:00:00#)<\/code> -14400 used for Eastern Standard Time. See <a href=\"http:\/\/www.epochconverter.com\/epoch\/timezones.php\">Time Zones<\/a>.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">JavaScript<\/span><\/td>\n<td><span style=\"font-size: small;\">Use the <a href=\"http:\/\/www.epochconverter.com\/programming\/#javascript\">JavaScript Date object<\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Tcl\/Tk<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>clock format 1325376000<\/code> <a href=\"http:\/\/www.tcl.tk\/man\/tcl8.4\/TclCmd\/clock.htm\" rel=\"nofollow\"><img decoding=\"async\" alt=\"More info\" src=\"http:\/\/www.epochconverter.com\/img\/icons\/info.png\" width=\"16\" height=\"16\" border=\"0\" \/><\/a><\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Unix\/Linux Shell<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>date -d @1190000000<\/code> Replace 1190000000 with your epoch, needs recent version of &lsquo;date&rsquo;. Replace &lsquo;-d&rsquo; with &lsquo;-ud&rsquo; for GMT\/UTC time.<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">PowerShell<\/span><\/td>\n<td><span style=\"font-size: small;\"><code>Function get-epochDate ($epochDate) { [timezone]::CurrentTimeZone.ToLocalTime(([datetime]'1\/1\/1970').AddSeconds($epochDate)) }<\/code>, then use: <code>get-epochDate 1279152364<\/code>. Works for Windows PowerShell v1 and v2<\/span><\/td>\n<\/tr>\n<tr>\n<td><span style=\"font-size: small;\">Other OS&rsquo;s<\/span><\/td>\n<td><span style=\"font-size: small;\">Command line: <code>perl -e \"print scalar(localtime(<em>epoch<\/em>))\"<\/code> (If Perl is installed) Replace &lsquo;localtime&rsquo; with &lsquo;gmtime&rsquo; for GMT\/UTC time.<\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n","protected":false},"excerpt":{"rendered":"<p>http:\/\/www.epochconverter.com\/ What is epoch time? The Unix epoch (or Unix time or POSIX time or Unix timestamp) is the number of seconds that have elapsed since January 1, 1970 (midnight UTC\/GMT), not counting leap seconds (in ISO 8601: 1970-01-01T00:00:00Z). Literally speaking the epoch is Unix time 0 (midnight 1\/1\/1970), but &lsquo;epoch&rsquo; is often used as &hellip; <a href=\"http:\/\/les-fougs.com\/wordpress\/2013\/03\/11\/epoch\/\" class=\"more-link\">Continuer la lecture<span class=\"screen-reader-text\"> de &laquo;&nbsp;Epoch&nbsp;&raquo;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[37],"tags":[],"_links":{"self":[{"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/posts\/176"}],"collection":[{"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/comments?post=176"}],"version-history":[{"count":0,"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/posts\/176\/revisions"}],"wp:attachment":[{"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/media?parent=176"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/categories?post=176"},{"taxonomy":"post_tag","embeddable":true,"href":"http:\/\/les-fougs.com\/wordpress\/wp-json\/wp\/v2\/tags?post=176"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}