thenbrent / paypal-digital-goods

The missing PayPal Digital Goods PHP library. Discontinued - PayPal no longer offer the Digital Goods product.
Other
121 stars 38 forks source link

Tabs in PHP #6

Closed osCMattiFinn closed 11 years ago

osCMattiFinn commented 11 years ago

This will not give a tab as you expect:

date( 'Y-m-d\TH:i:s', time() + ( 24 * 60 * 60 ) ),

corrected:

date( "Y-m-d\tH:i:s", time() + ( 24 * 60 * 60 ) ),

thenbrent commented 11 years ago

It's not to add a tab, it's to add a capital T, which needs to be escaped to prevent it from being expanded (because a capital T is also a format character).