我正在尝试使用我在head标签中调用的javascript文件中定义的函数来验证输入到表单上的输入字段的字符串,这是我的index.php文件中的第一个包含。在调用mod10()函数之前,我正在进行一些检查,这些检查都是通过的,但是一旦调用了mod10()函数,我就会收到以下错误:
致命错误:调用未定义的函数mod10() /Applications/XAMPP/xamppfiles/htdocs/modderfc/Content/new_registration.php 第46行
以下是抛出错误的代码块:
//Check if the ID Number entered is a valid ID Number
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$fieldTitle = "Player ID Number";
if (empty($_POST["player_id_number"])) {
$player_id_numberErr = $fieldTitle . $requiredErrorText;
} else {
// check if the ID Number entered is a valid ID Number
if (mod10($player_id_number,13) == FALSE) { //line 46
$player_id_numberErr = $id_numberValidationErrorText;
} else {
$player_id_number = test_input($_POST["player_id_number"]);
}
}
}
我尝试在if(mod10($ player_id_number,13)== FALSE)之前使用以下内容设置$ player_id_number字段{line link this:
$player_id_number = test_input($_POST["player_id_number"]);
但是会导致相同的错误,这与之前失败的行相同:
致命错误:在第47行的/Applications/XAMPP/xamppfiles/htdocs/modderfc/Content/new_registration.php中调用未定义的函数mod10()
作为参考,我还在.js文件中包含了该函数:
function mod10(num, validLength) {
if (num == "" || num == null) return true;
var valid = "0123456789";
var sCCN = num.toString().replace (/ /g,'');
var len = sCCN.length;
var iCCN = parseInt(sCCN,10);
var iTotal = 0; // integer total set at zero
var bResult = false;
var temp; // temp variable for parsing string
var calc; // used for calculation of each digit
for (var j=0; j<len; j++) {
temp = "" + sCCN.substring(j, j+1);
if (valid.indexOf(temp) == "-1"){bResult = false;}
}
if(len != validLength) {
bResult = false;
}
else
{ // num is proper length - let's see if it is a valid mod10 number
for (var i=len;i>0;i--) { // LOOP throught the digits
calc = parseInt(iCCN,10) % 10; // right most digit
calc = parseInt(calc,10); // assure it is an integer
iTotal += calc; // running total of the number as we loop - Do Nothing to first digit
i--; // decrement the count - move to the next digit
iCCN = iCCN / 10; // subtracts right most digit
calc = parseInt(iCCN,10) % 10 ; // NEXT right most digit
calc = calc *2; // multiply the digit by two
switch(calc){
case 10: calc = 1; break; //5*2=10 & 1+0 = 1
case 12: calc = 3; break; //6*2=12 & 1+2 = 3
case 14: calc = 5; break; //7*2=14 & 1+4 = 5
case 16: calc = 7; break; //8*2=16 & 1+6 = 7
case 18: calc = 9; break; //9*2=18 & 1+8 = 9
default: calc = calc; //4*2= 8 & 8 = 8 -same for all lower numbers
}
iCCN = iCCN / 10; // subtracts right most digit
iTotal += calc; // running total of the number as we loop
} // END OF LOOP
bResult = iTotal%10 == 0 // check to see if the sum Mod 10 is zero
}
return bResult; // Return the results
}
答案 0 :(得分:2)
了解客户端代码和服务器端代码之间的区别非常重要。 PHP(服务器端)将首先运行,并生成html(和JavaScript,如果你愿意),浏览器将加载该进程的输出。
从那时起,您就在客户端,并拥有JavaScript等前端工具。
如果你想从php调用一个JavaScript函数,你可以回显一下页面中的JavaScript代码
<script>
部分,但该代码仅在浏览器加载页面后运行。 php实际上不会运行该函数,只需将其打印为文本。
如果您希望从客户端访问服务器代码,可以使用AJAX。
答案 1 :(得分:1)
你在这里混合php和javascript。 Php永远无法执行mod10
函数,因为它是用JS编写的。简单回答:在php中重新编写mod10
函数。