我正在尝试制作一个可以在移动设备上运行的 php 文档。我们有一些 javascript 在应用程序顶部显示导航按钮。我的 php 文档应该显示在按钮的正下方。它应该是一个相当简单的页面,但我挣扎得很厉害。我试图简单地调用一个设置变量的函数。我想使用这个变量来显示使用该应用程序的人拥有的金额。我遇到了函数和变量的问题。我被告知 html 不能使用变量或函数,所以我需要闯入 php 并使用 "echo functionName(); 所以:声明函数,调用函数来设置变量,在 div 内的页面上显示变量。任何帮助将不胜感激。这是我的代码。:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<?php
?>
<html>
<head>
<script type="text/javascript">
//int $availableBal;
//int $currentHoldings;
function int getBalance();
{
int $availableBal = 500;
//alert("you have " + $availableBal + " dollars to spend");
return $availableBal;
}
function void getHoldings()
{
int $MSFT_Shares = 5;
int $MFST_Price= 100;
int $currentHoldings = $MSFT_Shares * $MSFT_Price;
return $currentHoldings;
}
</script>
<style>
html {text-align:center}
</style>
</head>
<body>
<div id="totalMoney" align="center" style= "border:1px solid grey">
You have a current balance of: $ <?php 'echo getBalance();' ?>
<br>
<!--The total worth of your current stocks is: $ <script type="text/javascript"> document.write(getHoldings();)</script> -->
</div>
</body>
</html>