Old 12-18-2005   #1 (permalink)
Registered User
 
Join Date: Nov 2005
Posts: 1

PHP date function

I have this code to show the date and time:

PHP Code:
 <?php
      
// Show the date
      
$date date("d M Y \a\t g:i A");
      echo 
'The Current date and time is: <b>';
      echo 
$date;
      echo 
'</b>';
   
?>
The problem I have is that im trying to get it to display
'date' at 'time'
But when it runs it displays
'date' a 'time'

Im pretty sure 'a' and 't' are code for date/time so I put a \ infront of them to stop them being used, im guessing theres something really silly ive done wrong but cant really see it unfortunatly.
skirmish is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Old 12-18-2005   #2 (permalink)
Moderator
 
Join Date: Jul 2004
Location: Quebec City, Canada
Posts: 50

Your problem lies in the fact that strings are parsed by PHP's internal engine before they get handed to the date function (or any other function for that matter), so \t gets immediately transformed into a tab.

In order for the date function to actually receive an escaped t (\t), you have to physically force a backslash there ("d M Y \\a\\t g:i A").
The Eagle is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Small PHP Question .Silver HTML / PHP / ASP / JS 5 11-18-2005 01:51 AM
PHP Tutorial Trio! Man1c M0g Announcements 3 07-09-2005 09:15 AM
my new php sig scrowler HTML / PHP / ASP / JS 12 01-30-2005 01:00 AM
Php... Joe HTML / PHP / ASP / JS 35 06-22-2004 12:08 AM
Digital's Quick and Dirty Guide to PHP Order HTML / PHP / ASP / JS 15 05-05-2004 01:18 AM


All times are GMT +1. The time now is 07:22 AM.
Content Relevant URLs by vBSEO 3.2.0

Design & Content © BioRUST 2007 :: PRIVACY STATEMENT :: LEGAL INFORMATION :: ADVERTISING MEDIA KIT