我有以下(非常简化的代码),我想从第二个函数中的第一个函数调用变量$ sendmilisecs的值(从底部第7行),但每次尝试都失败了。我尝试过使用全球$ sendmilisecs,但即使这样也行不通。有任何想法吗?感谢。
<?php
function gastats_display_settings()
{
$sendsecs = 10;
$sendmilisecs = $sendsecs * 1000;
$sopmin = 3;
$gastatssopsecs = $rbrsopmin * 60;
}
function ga_stats() {
echo "
<script>
var _gaq = _gaq || [];
(function (tos) {
window.setInterval(function () {
tos = (function (t) {
return t[0] == 50 ? (parseInt(t[1]) + 1) + ':00' : (t[1] || '0') + ':' + (parseInt(t[0]) + 10);
})(tos.split(':').reverse());
window.pageTracker ? pageTracker._trackEvent('Time', 'Log', tos) : _gaq.push(['_trackEvent', 'Time', 'Log', tos]);
}, " . $sendmilisecs . ");
})('00');
</script>
";
}
add_action('wp_footer', 'ga_stats', 100);
?>