I need the ‘% 0 8’ (without the spaces) string in my template, within php tags, but it is removed?
$timestamp_hex = sprintf("% 0 8x", $timestamp); // without spacesbecomes
$timestamp_hex = sprintf("x", $timestamp);How can I fix this?
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
June 06, 2012 12:43pm
Subscribe [1]#1 / Jun 06, 2012 12:43pm
I need the ‘% 0 8’ (without the spaces) string in my template, within php tags, but it is removed?
$timestamp_hex = sprintf("% 0 8x", $timestamp); // without spacesbecomes
$timestamp_hex = sprintf("x", $timestamp);How can I fix this?