我一直在为此苦苦挣扎;在PHP中退出hexdec。出于某种原因,echo
'函数起作用了,但是退出时拒绝输出。
$term = '5.05';
$term = hexdec(str_replace('.', '', $term) . '0000');
echo $term; // works, outputs 84213760
$term = '5.05';
$term = hexdec(str_replace('.', '', $term) . '0000');
exit($term); // outputs nothing, same goes for return
似乎也可以exit
输出大量数字,例如5.055555555555
作为输入值。有人知道为什么会这样吗?为什么退出时不输出?