require_once('classes/class.validation.php');
$array = $_POST['array'];
$pass_profanity = false;
$validation = new Validation;
function check_for_profanity($input){
if(is_array($input)){
foreach($input as $row){
if(is_array($row)){
check_for_profanity($input);
} else {
$pass_profanity = $validation->check_for_profanity($row);
}
}
} else {
$pass_profanity = $validation->check_for_profanity($input);
return;
}
return;
}
check_for_profanity($array);
しかし、私はエラーを取得:PHP変数のスコープのヘルプ
Notice: Undefined variable: validation in /Library/WebServer/Documents/file.php on line 22
Fatal error: Call to a member function check_for_profanity() on a non-object in /Library/WebServer/Documents/file.php on line 2
私はそれを把握することはできませんが、任意の考え?
ありがとうございます!
を定義してください。 – Josh